2016-12-11 16:38:00 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2016 MerryMage
|
|
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
|
|
* General Public License version 2 or any later version.
|
|
|
|
*/
|
|
|
|
|
2020-04-08 12:57:53 +02:00
|
|
|
#include "backend/x64/exception_handler.h"
|
2016-12-11 16:38:00 +01:00
|
|
|
|
2020-04-08 12:46:36 +02:00
|
|
|
namespace Dynarmic::Backend::X64 {
|
2016-12-11 16:38:00 +01:00
|
|
|
|
2020-04-08 12:57:53 +02:00
|
|
|
struct ExceptionHandler::Impl final {
|
2016-12-11 16:38:00 +01:00
|
|
|
};
|
|
|
|
|
2020-04-08 12:57:53 +02:00
|
|
|
ExceptionHandler::ExceptionHandler() = default;
|
|
|
|
ExceptionHandler::~ExceptionHandler() = default;
|
2016-12-11 16:38:00 +01:00
|
|
|
|
2020-04-08 12:57:53 +02:00
|
|
|
void ExceptionHandler::Register(BlockOfCode&) {
|
2016-12-11 16:38:00 +01:00
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2020-04-08 12:46:36 +02:00
|
|
|
} // namespace Dynarmic::Backend::X64
|