Handle CPU_EXIT_ERROR

This commit is contained in:
StrikerX3 2018-12-29 21:59:20 -02:00
parent 9afadeb7af
commit c39df02a04

View file

@ -759,6 +759,7 @@ int Xbox::RunCpu()
switch (exit_info->reason) {
case CPU_EXIT_HLT: log_info("CPU halted\n"); Stop(); break;
case CPU_EXIT_SHUTDOWN: log_info("VM is shutting down\n"); Stop(); break;
case CPU_EXIT_ERROR: log_fatal("CPU encountered an error\n"); Stop(); break;
case CPU_EXIT_HW_BREAKPOINT:
case CPU_EXIT_SW_BREAKPOINT:
{