mirror of
https://github.com/holub/mame
synced 2025-04-18 22:49:58 +03:00
start: -> continue
This commit is contained in:
parent
a9bc46cb17
commit
cb5adc79a8
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user