1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-02-04 13:34:27 +00:00

15 lines
183 B
ArmAsm
Raw Normal View History

.segment "INIT"
.segment "ONCE"
.segment "STARTUP"
.segment "CODE"
Loop:
lda $480,y
clc
adc #1
sta $480,y
iny
bne Loop
jmp Loop