mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-25 18:33:11 +00:00
10 lines
132 B
ArmAsm
10 lines
132 B
ArmAsm
|
|
; Minimal header file for use with Astrocade C programs
|
|
|
|
.area _CODE
|
|
|
|
jp start ; jump to main()
|
|
start:
|
|
ld sp,#0x4fce
|
|
jp _main
|