dynarmic/src/backend/x64/exception_handler_generic.cpp

29 lines
617 B
C++
Raw Normal View History

/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
2020-04-23 16:25:11 +02:00
* SPDX-License-Identifier: 0BSD
*/
#include "backend/x64/exception_handler.h"
namespace Dynarmic::Backend::X64 {
struct ExceptionHandler::Impl final {
};
ExceptionHandler::ExceptionHandler() = default;
ExceptionHandler::~ExceptionHandler() = default;
void ExceptionHandler::Register(BlockOfCode&) {
// 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
}
} // namespace Dynarmic::Backend::X64