fixed cpu __repr__ method

float_support
Anton Lydike 4 years ago
parent 9cd0fcb7e8
commit 97525bf8ab

@ -100,5 +100,5 @@ class CPU:
return "CPU(pc=0x{:08X}, cycle={}, instructions={})".format( return "CPU(pc=0x{:08X}, cycle={}, instructions={})".format(
self.pc, self.pc,
self.cycle, self.cycle,
" ".join(s.name for s in self.sets) " ".join(s.name for s in self.instruction_sets)
) )

@ -10,6 +10,7 @@ class InstructionSet(ABC):
""" """
def __init__(self, cpu: 'CPU'): def __init__(self, cpu: 'CPU'):
self.name = self.__class__.__name__
self.cpu = cpu self.cpu = cpu
self.mmu = cpu.mmu self.mmu = cpu.mmu
self.regs = cpu.regs self.regs = cpu.regs

Loading…
Cancel
Save