mnaberez / py65

Emulate 6502-based microcomputer systems in Python
BSD 3-Clause "New" or "Revised" License
234 stars 68 forks source link

Repeating last command prints register list twice #45

Open mnaberez opened 6 years ago

mnaberez commented 6 years ago

Entering a blank line repeats the last command as expected, but the register list is printed twice:

.m 0
0000:  00

       PC  AC XR YR SP NV-BDIZC
6502: 0000 00 00 00 f3 00110100
.
0000:  00

       PC  AC XR YR SP NV-BDIZC
6502: 0000 00 00 00 f3 00110100

       PC  AC XR YR SP NV-BDIZC
6502: 0000 00 00 00 f3 00110100
.