]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Always ignore IO regions in debugger ea lookup.
authorToni Wilen <twilen@winuae.net>
Sat, 3 Feb 2018 09:15:13 +0000 (11:15 +0200)
committerToni Wilen <twilen@winuae.net>
Sat, 3 Feb 2018 09:15:13 +0000 (11:15 +0200)
newcpu.cpp

index c5bbddbdd26da06d3c408259fe5acd09a96d6491..8d29122af8c402530bc1bbd466000cfc69cc23f8 100644 (file)
@@ -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))