6502 command stream player, part 10

fix jump
This commit is contained in:
tildearrow 2025-04-18 18:41:35 -05:00
parent 84eb84b89f
commit ffb4b9e640

View file

@ -262,15 +262,16 @@ fcsRet:
fcsJump:
; get address
jsr fcsReadNext
tay
pha
jsr fcsReadNext
pha
; ignore next two bytes
jsr fcsIgnoreNext
jsr fcsIgnoreNext
; a has high byte
; y has low byte
sty chanPC,x
pla
sta chanPC+1,x
pla
sta chanPC,x
rts
; TODO