From 344c672f89a62a539aae7315cba54a05723f5991 Mon Sep 17 00:00:00 2001 From: stephena Date: Sat, 19 May 2012 18:51:30 +0000 Subject: [PATCH] Fixed bug in disassembly in zero-page RAM when accesses were made outside the $80-$FF area. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2484 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- src/debugger/DiStella.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugger/DiStella.cxx b/src/debugger/DiStella.cxx index 554590327..48d09ad2f 100644 --- a/src/debugger/DiStella.cxx +++ b/src/debugger/DiStella.cxx @@ -826,7 +826,7 @@ int DiStella::mark(uInt32 address, uInt8 mask, bool directive) { return 3; } - else if (address > 0x1000) + else if (address > 0x1000 && myOffset != 0) // Exclude zero-page accesses { /* 2K & 4K case */ myLabels[address & myAppData.end] = myLabels[address & myAppData.end] | mask;