tweaks
This commit is contained in:
parent
5c572f725c
commit
4e325fb4c9
2 changed files with 2 additions and 3 deletions
|
|
@ -299,8 +299,7 @@ namespace Dynemu {
|
|||
void ExceptionRaised(u32 pc, Dynarmic::A32::Exception exception)
|
||||
*/
|
||||
void ExceptionRaised(u32 pc, Dynarmic::A32::Exception exception) override {
|
||||
std::cerr << fmt::format("dynemu: exception at {:#08x}: ", pc);
|
||||
std::cerr << fmt::format("{}", (int)exception) << std::endl;
|
||||
std::cerr << fmt::format("dynemu: exception at {:#010x}: code {:#02x} ", pc, (int)exception) << std::endl;;
|
||||
|
||||
if (exception == Dynarmic::A32::Exception::NoExecuteFault)
|
||||
cpu->HaltExecution(Dynarmic::HaltReason::MemoryAbort);
|
||||
|
|
|
|||
|
|
@ -7,4 +7,4 @@ if (DYNEMU_PYTHON)
|
|||
set(PYBIND11_FINDPYTHON ON)
|
||||
add_subdirectory(pybind)
|
||||
endif()
|
||||
add_subdirectory(test)
|
||||
# add_subdirectory(test)
|
||||
Loading…
Add table
Add a link
Reference in a new issue