1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Fix eor bug

This commit is contained in:
jede 2020-05-27 22:44:37 +02:00 committed by greg-king5
parent 50192fc65e
commit 6c2d578c61

View File

@ -98,7 +98,7 @@ READ:
sta VIA2::PRB
; then read
lda VIA2::PRB
eor #%10011111
eor #%01011111
rts
right:
@ -109,6 +109,6 @@ right:
; then read
lda VIA2::PRB
eor #%01011111
eor #%10011111
rts