mnaberez / py65

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

Fix minor asm/dasm bugs #80

Closed patricksurry closed 1 year ago

patricksurry commented 1 year ago

Fix for issue #79

Py65 Monitor

        PC  AC XR YR SP NV-BDIZC
65C02: 0000 00 00 00 ff 00110000
.a 1000 stz 12
$1000  64 12     STZ $12

...

.d 1000
$1000  64 12     STZ $12

...

.al 12 twelve

...

.a 1000 lda (twelve)
$1000  b2 12     LDA (twelve)