2016-12-11 16:38:00 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2016 MerryMage
|
2020-04-23 16:25:11 +02:00
|
|
|
* SPDX-License-Identifier: 0BSD
|
2016-12-11 16:38:00 +01:00
|
|
|
*/
|
|
|
|
|
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 17:56:57 +02:00
|
|
|
bool ExceptionHandler::SupportsFastmem() const noexcept {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExceptionHandler::SetFastmemCallback(std::function<FakeCall(u64)>) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2020-04-08 12:46:36 +02:00
|
|
|
} // namespace Dynarmic::Backend::X64
|