1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-10 06:29:28 +00:00
8bitworkshop/presets/apple2/textdemo.s
Steven Hugg 14665e3cd4 updated fs65 libraries to Jun 13 2018
seperate filesystems for each cc65 platform
2018-06-23 19:01:34 -04:00

15 lines
183 B
ArmAsm

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