From c43082037198dbce2fa18d921514170bb68407d9 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 3 Feb 2018 11:15:13 +0200 Subject: [PATCH] Always ignore IO regions in debugger ea lookup. --- newcpu.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/newcpu.cpp b/newcpu.cpp index c5bbddbd..8d29122a 100644 --- a/newcpu.cpp +++ b/newcpu.cpp @@ -2153,6 +2153,11 @@ static void showea_val(TCHAR *buffer, uae_u16 opcode, uaecptr addr, int size) struct mnemolookup *lookup; instr *table = &table68k[opcode]; + if (addr >= 0xe90000 && addr < 0xf00000) + return; + if (addr >= 0xdff000 && addr < 0xe00000) + return; + for (lookup = lookuptab; lookup->mnemo != table->mnemo; lookup++) ; if (!(lookup->flags & 1)) -- 2.47.3