From: Toni Wilen Date: Sat, 3 Feb 2018 09:15:13 +0000 (+0200) Subject: Always ignore IO regions in debugger ea lookup. X-Git-Tag: 4000~214 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=c43082037198dbce2fa18d921514170bb68407d9;p=francis%2Fwinuae.git Always ignore IO regions in debugger ea lookup. --- 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))