mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
14 lines
188 B
ArmAsm
14 lines
188 B
ArmAsm
; Cartridge init routine
|
|
;
|
|
; Christian Groessler, 06-Jan-2014
|
|
|
|
.ifndef __ATARIXL__
|
|
|
|
.export cartinit
|
|
|
|
.segment "STARTUP"
|
|
|
|
cartinit: rts
|
|
|
|
.endif ; .ifndef __ATARIXL__
|