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
This commit is contained in:
stephena 2010-11-07 20:41:15 +00:00
parent 192ab931f2
commit ea8d329e0c
1 changed files with 2 additions and 1 deletions

View File

@ -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: