tidy: indent
Some checks failed
CI (Linux) / build-linux (-U_FORTIFY_SOURCE, gcc, gcc, g++, mametiny, tiny) (push) Has been cancelled
CI (Linux) / build-linux (clang, clang, clang++, mame, mame) (push) Has been cancelled
CI (macOS) / build-macos (push) Has been cancelled
CI (Windows) / build-windows (clang, clang, clang++, mametiny, tiny) (push) Has been cancelled
CI (Windows) / build-windows (gcc, gcc, g++, mame, mame) (push) Has been cancelled

This commit is contained in:
Andrei Holub 2025-04-05 09:50:12 -04:00
parent cb5adc79a8
commit 8c1b0dcbe4
2 changed files with 4 additions and 3 deletions

View File

@ -693,7 +693,6 @@ ffff
debugger_wait_hook();
call rop
PC--;
m_ref = 0xffff00;
goto rop;
} else {
PRVPC = PC;

View File

@ -66,6 +66,8 @@ class Opcode:
step = 0
for i in range(0, len(self.source)):
il = self.source[i]
if not has_steps:
il.indent = ""
line = il.line()
tokens = line.split()
if tokens[0] == '+':
@ -222,8 +224,8 @@ class OpcodeList:
prefix = None
print("if (m_wait_state)", file=f)
print("{", file=f)
print(" m_icount = 0; // stalled", file=f)
print(" return;", file=f)
print("\tm_icount = 0; // stalled", file=f)
print("\treturn;", file=f)
print("}", file=f)
print("while (true) {", file=f)
print("switch (u8(m_ref >> 16)) // prefix", file=f)