diff --git a/src/asm/6502/stream.s b/src/asm/6502/stream.s index a11e8e5a9..fe25cf946 100644 --- a/src/asm/6502/stream.s +++ b/src/asm/6502/stream.s @@ -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