1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-10-01 20:57:38 +00:00
8bitworkshop/presets/astrocade/hdr_autostart.s

15 lines
254 B
ArmAsm
Raw Normal View History

2018-08-29 01:41:51 +00:00
; Minimal header file for use with Astrocade C programs
.area _CODE
jp start ; jump to main()
start:
ld sp,#0x4fce
2019-05-29 01:05:19 +00:00
ld BC, #l__INITIALIZER
ld A, B
ld DE, #s__INITIALIZED
ld HL, #s__INITIALIZER
ldir
jp _main