From 07930f0253aa2554aaa6352323a427e687a55d07 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 25 Jan 2018 21:49:21 -0500 Subject: [PATCH] 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 --- tests/A64/unicorn_emu/unicorn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/A64/unicorn_emu/unicorn.cpp b/tests/A64/unicorn_emu/unicorn.cpp index ae1d93c9..c1ceb811 100644 --- a/tests/A64/unicorn_emu/unicorn.cpp +++ b/tests/A64/unicorn_emu/unicorn.cpp @@ -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); } }