mirror of https://github.com/stella-emu/stella.git
stop disassembling at areas marked as ROW (fixes #931)
This commit is contained in:
parent
db75df51b4
commit
27f1968ef6
|
@ -754,8 +754,9 @@ void DiStella::disasmFromAddress(uInt32 distart)
|
|||
|
||||
// abort when we reach non-code areas
|
||||
if (checkBits(myPC, Device::Device::DATA | Device::GFX | Device::PGFX |
|
||||
Device::COL | Device::PCOL | Device::BCOL | Device::AUD,
|
||||
Device::CODE)) {
|
||||
Device::COL | Device::PCOL | Device::BCOL |
|
||||
Device::AUD | Device::ROW,
|
||||
Device::CODE)) {
|
||||
myPCEnd = (myPC - 1) + myOffset;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue