mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 18:08:04 +00:00
34 lines
913 B
ArmAsm
34 lines
913 B
ArmAsm
;
|
|
; Oliver Schmidt, 2013-05-16
|
|
;
|
|
; Startup code for cc65 (sim6502 version)
|
|
;
|
|
|
|
.export _exit
|
|
.export startup
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
|
.import zerobss, callmain
|
|
.import initlib, donelib
|
|
.import exit
|
|
.import __MAIN_START__, __MAIN_SIZE__ ; Linker generated
|
|
.import __STACKSIZE__ ; Linker generated
|
|
|
|
.include "zeropage.inc"
|
|
|
|
.segment "STARTUP"
|
|
|
|
startup:cld
|
|
ldx #$FF
|
|
txs
|
|
lda #<(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
|
|
ldx #>(__MAIN_START__ + __MAIN_SIZE__ + __STACKSIZE__)
|
|
sta sp
|
|
stx sp+1
|
|
jsr zerobss
|
|
jsr initlib
|
|
jsr callmain
|
|
_exit: pha
|
|
jsr donelib
|
|
pla
|
|
jmp exit
|