1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-07-03 21:29:33 +00:00
8bitworkshop/presets/apple2/textdemo.s

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