stop disassembling at areas marked as ROW (fixes #931)

This commit is contained in:
Thomas Jentzsch 2023-01-17 16:29:11 +01:00
parent db75df51b4
commit 27f1968ef6
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}