1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-01 19:41:29 +00:00
emu6502/bins/04.asm

23 lines
205 B
NASM
Raw Normal View History

2019-04-27 19:13:15 +00:00
;number of loops to perform
LDA #$10
STA $A0
outer:
;number of bytes to color in a loop
LDY #$03
;LDX #$00
loop:
;LDA #$01
STA $0200, X
INX
DEY
BNE loop
;outer loop handling
DEC $A0
LDA $A0
BNE outer