mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-21 08:31:23 +00:00
17 lines
238 B
NASM
17 lines
238 B
NASM
; color loop with the stack
|
|
LDX #$00
|
|
LDY #$00
|
|
firstloop:
|
|
TXA
|
|
STA $0200,Y
|
|
PHA
|
|
INX
|
|
INY
|
|
CPY #$10
|
|
BNE firstloop ;loop until Y is $10
|
|
secondloop:
|
|
PLA
|
|
STA $0200,Y
|
|
INY
|
|
CPY #$20 ;loop until Y is $20
|
|
BNE secondloop |