- [ONGOING] Berserk Mode!

This commit is contained in:
2024-04-22 14:56:27 +02:00
parent 0bd7c841d9
commit 06734c3af4
3 changed files with 13 additions and 2 deletions

View File

@@ -86,10 +86,13 @@ int main(int argc, char *argv[])
z80debug::stop();
zxscreen::redraw();
} else {
if (z80::getPC()==0x05C8) zx_tape::go_berserk();
uint8_t dt = z80::step();
zx_tape::update(dt);
zx_ula::sound_update(dt);
zxscreen::refresh(dt);
if (!zx_tape::berserk()) {
zx_ula::sound_update(dt);
zxscreen::refresh(dt);
}
}
}
}