unicorn: Display EC and ISS separately beside the full ESR value

Makes it a little nicer to pick out the exception class details at a glance
This commit is contained in:
Lioncash 2018-01-25 21:49:21 -05:00 committed by MerryMage
parent 8fa9849c25
commit d3b1a72bca

View file

@ -164,7 +164,7 @@ void Unicorn::InterruptHook(uc_engine* uc, u32 int_number, void* user_data) {
this_->testenv.CallSVC(iss);
break;
default:
ASSERT_MSG(false, "Unhandled interrupt: int_number: %#x, esr: %#x", int_number, esr);
ASSERT_MSG(false, "Unhandled interrupt: int_number: %#x, esr: %#x (ec: %#x, iss: %#x)", int_number, esr, ec, iss);
}
}