mirror of https://github.com/stella-emu/stella.git
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:
parent
192ab931f2
commit
ea8d329e0c
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue