From ea8d329e0c00d0511650eda3fd5ba0045a0639ab Mon Sep 17 00:00:00 2001 From: stephena Date: Sun, 7 Nov 2010 20:41:15 +0000 Subject: [PATCH] Don't mark code disassembled in ZP RAM has tentative (with a '*' symbol). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2171 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- src/debugger/DiStella.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/debugger/DiStella.cxx b/src/debugger/DiStella.cxx index b92c8f1b9..11f6020c9 100644 --- a/src/debugger/DiStella.cxx +++ b/src/debugger/DiStella.cxx @@ -930,7 +930,8 @@ void DiStella::addEntry(CartDebug::DisasmType type) // but it could also indicate that code will *never* be accessed // Since it is impossible to tell the difference, marking the address // in the disassembly at least tells the user about it - if(!(Debugger::debugger().getAddressDisasmType(tag.address) & CartDebug::CODE)) + if(!(Debugger::debugger().getAddressDisasmType(tag.address) & CartDebug::CODE) + && myAppData.length >= 4096) tag.ccount += " *"; break; case CartDebug::GFX: