From 837ed17b99aa0431e476a91b7f5d00e32eef4825 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 3 Feb 2018 11:19:26 +0200 Subject: [PATCH] List also raw autoconfig data. --- debug.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debug.cpp b/debug.cpp index c16908a6..fb85474c 100644 --- a/debug.cpp +++ b/debug.cpp @@ -4178,6 +4178,12 @@ static void show_exec_lists (TCHAR *t) get_word_debug(list + 16 + 4), get_byte_debug(list + 16 + 1), get_long_debug(list + 16 + 6), rom_vector, get_word_debug(list + 16 + 4), get_byte_debug(list + 16 + 1)); + for (int i = 0; i < 16; i++) { + console_out_f(_T("%02x"), get_byte_debug(list + 16 + i)); + if (i < 15) + console_out_f(_T(".")); + } + console_out_f(_T("\n")); if ((type & 0x10)) { uae_u8 diagarea[256]; uae_u16 nameoffset; -- 2.47.3