mirror of
https://github.com/cc65/cc65.git
synced 2025-02-03 22:32:24 +00:00
Save another 3 bytes
This commit is contained in:
parent
306f421aa9
commit
e2ec517aae
@ -270,16 +270,14 @@ PATTERN_SOLID:
|
||||
|
||||
@NEXT_COLUMN:
|
||||
sta (tmp2),y
|
||||
adc #ROWS
|
||||
iny
|
||||
cpy #COLS
|
||||
bne @NEXT_COLUMN
|
||||
adc #ROWS
|
||||
bcc @NEXT_COLUMN
|
||||
|
||||
; Step to next row on screen.
|
||||
|
||||
lda tmp2
|
||||
clc
|
||||
adc #COLS
|
||||
adc #COLS-1 ; Carry is set
|
||||
sta tmp2
|
||||
|
||||
inx
|
||||
|
Loading…
x
Reference in New Issue
Block a user