Zack Buhman b6c629baad initial SH4 emulator implementation in C
This currently only implements the SH2 instructions.
2024-04-21 20:54:32 +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