start: -> continue

This commit is contained in:
Andrei Holub 2025-04-05 09:36:27 -04:00
parent a9bc46cb17
commit cb5adc79a8
2 changed files with 3 additions and 4 deletions

View File

@ -508,11 +508,11 @@ macro r800:otdr
macro jump %opcode
m_ref = 0x%opcode00;
goto start;
continue;
macro jump_prefixed %prefix
m_ref = (%prefix << 16) | (TDAT8 << 8);
goto start;
continue;
macro take_nmi
// Check if processor was halted
@ -700,7 +700,7 @@ ffff
debugger_instruction_hook(PC);
call rop
m_ref = (0x00 << 16) | (TDAT8 << 8);
goto start;
continue;
}

View File

@ -226,7 +226,6 @@ class OpcodeList:
print(" return;", file=f)
print("}", file=f)
print("while (true) {", file=f)
print("start:", file=f)
print("switch (u8(m_ref >> 16)) // prefix", file=f)
print("{", file=f)
for opc in self.opcode_info: