added __repr__ to CPU class

This commit is contained in:
Anton Lydike 2021-04-18 09:33:00 +02:00
parent d56dca3ff4
commit 4b26ab6774

View File

@ -372,3 +372,9 @@ class CPU:
for method in vars(CPU):
if method.startswith('instruction_'):
yield method[12:]
def __repr__(self):
return "CPU(pc=0x{:08X}, cycle={})".format(
self.pc,
self.cycle
)