1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-07-09 14:28:56 +00:00
emu6502/bins/05.asm

17 lines
238 B
NASM
Raw Normal View History

2019-04-27 19:13:15 +00:00
; 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