mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
c094dc65c1
git-svn-id: svn://svn.cc65.org/cc65/trunk@1898 b7a2c559-68d2-44c3-8de9-860c34a00d81
64 lines
1.4 KiB
ArmAsm
64 lines
1.4 KiB
ArmAsm
;
|
|
; This must be the *second* file on the linker command line
|
|
; (.cvt header must be the *first* one)
|
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
|
; 26.10.99, 10.3.2000, 15.8.2001, 23.12.2002
|
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
|
.import initlib, donelib
|
|
.import pushax
|
|
.import _main
|
|
.import _MainLoop, _EnterDeskTop
|
|
.import zerobss
|
|
.importzp sp
|
|
.export _exit
|
|
|
|
; ------------------------------------------------------------------------
|
|
; Create an empty GEOSZP segment to avoid linker warnings
|
|
|
|
.segment "GEOSZP", zeropage
|
|
|
|
; ------------------------------------------------------------------------
|
|
; Create an empty LOWCODE segment to avoid linker warnings
|
|
|
|
.segment "LOWCODE"
|
|
|
|
; ------------------------------------------------------------------------
|
|
; Place the startup code in a special segment.
|
|
|
|
.segment "STARTUP"
|
|
|
|
; Clear the BSS data
|
|
|
|
jsr zerobss
|
|
|
|
; Setup stack
|
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__)
|
|
sta sp
|
|
lda #>(__RAM_START__ + __RAM_SIZE__)
|
|
sta sp+1 ; Set argument stack ptr
|
|
|
|
; Call module constructors
|
|
|
|
jsr initlib
|
|
|
|
; Pass an empty command line
|
|
|
|
lda #0
|
|
tax
|
|
jsr pushax ; argc
|
|
jsr pushax ; argv
|
|
|
|
cli
|
|
ldy #4 ; Argument size
|
|
jsr _main ; call the users code
|
|
|
|
; Call module destructors. This is also the _exit entry which must be called
|
|
; explicitly by the code.
|
|
|
|
_exit: jsr donelib ; Run module destructors
|
|
|
|
jmp _EnterDeskTop ; return control to the system
|