Save another 3 bytes
This commit is contained in:
parent
306f421aa9
commit
e2ec517aae
1 changed files with 3 additions and 5 deletions
|
@ -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…
Add table
Reference in a new issue