mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-14 22:05:24 +00:00
17 lines
247 B
ArmAsm
17 lines
247 B
ArmAsm
|
|
.include "astrocade.inc"
|
|
|
|
; Minimal header file for use with Astrocade C programs
|
|
|
|
.area _CODE
|
|
|
|
.db 0x55 ; sentinel
|
|
.dw MENUST
|
|
.dw PrgName
|
|
.dw PrgStart
|
|
PrgName:
|
|
.ascii "8BITWORKSHOP"
|
|
.db 0
|
|
PrgStart:
|
|
jp _main
|