Zack Buhman 8a300ba4c6 initial SH4 emulator implementation in C
This currently only implements the SH2 instructions.
2024-04-22 20:53:36 +08:00

11 lines
144 B
Python

_log = []
def log(*args):
_log.append(" ".join(map(str, args)))
def raw_log(*args):
_log.append(args)
def get_log():
return _log