1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +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 sta VIA2::PRB
; then read ; then read
lda VIA2::PRB lda VIA2::PRB
eor #%10011111 eor #%01011111
rts rts
right: right:
@@ -109,6 +109,6 @@ right:
; then read ; then read
lda VIA2::PRB lda VIA2::PRB
eor #%01011111 eor #%10011111
rts rts