mirror of
https://github.com/holub/mame
synced 2025-04-09 18:17:44 +03:00
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
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:
parent
cb5adc79a8
commit
8c1b0dcbe4
@ -693,7 +693,6 @@ ffff
|
||||
debugger_wait_hook();
|
||||
call rop
|
||||
PC--;
|
||||
m_ref = 0xffff00;
|
||||
goto rop;
|
||||
} else {
|
||||
PRVPC = PC;
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user