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

Removed unused label

This commit is contained in:
Stefan 2018-06-21 20:30:14 +00:00 committed by GitHub
parent 23534beaa6
commit 6a70d1dab1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -570,7 +570,10 @@ YCONT2: lda (POINT),y ;Plot endpoint
and CHUNK
eor (POINT),y
sta (POINT),y
jmp EXIT
lda #$36
sta $01
cli
rts
YFIXX: ;x=x+1
adc DY
@ -624,7 +627,7 @@ XCONT2: dex
lsr CHUNK ;Advance to last point
jsr LINEPLOT ;Plot the last chunk
EXIT: lda #$36
lda #$36
sta $01
cli
rts