2002-11-24 11:18:24 +00:00
|
|
|
;
|
2000-05-28 13:40:48 +00:00
|
|
|
; Startup code for cc65 (C64 version)
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _exit
|
2000-11-22 22:19:09 +00:00
|
|
|
.import initlib, donelib
|
2000-11-23 19:05:32 +00:00
|
|
|
.import zerobss, push0
|
2003-03-10 21:21:46 +00:00
|
|
|
.import callmain
|
2002-11-19 23:02:47 +00:00
|
|
|
.import RESTOR, BSOUT, CLRCH
|
2001-03-08 14:48:00 +00:00
|
|
|
.import __RAM_START__, __RAM_SIZE__ ; Linker generated
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-05-26 09:09:10 +00:00
|
|
|
.include "zeropage.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
.include "c64.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2002-11-22 23:50:45 +00:00
|
|
|
; Place the startup code in a special segment.
|
|
|
|
|
|
|
|
.segment "STARTUP"
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; BASIC header with a SYS call
|
|
|
|
|
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
|
|
|
.word 1000 ; Line number
|
|
|
|
.byte $9E,"2061" ; SYS 2061
|
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
2000-10-30 21:01:34 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x ; Save the zero page locations we need
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L1
|
|
|
|
|
|
|
|
; Close open files
|
|
|
|
|
|
|
|
jsr CLRCH
|
|
|
|
|
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
|
|
|
jsr BSOUT
|
|
|
|
|
2002-11-24 19:13:19 +00:00
|
|
|
; Switch off the BASIC ROM
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda $01
|
2002-11-24 19:13:19 +00:00
|
|
|
pha ; Remember the value
|
2000-05-28 13:40:48 +00:00
|
|
|
and #$F8
|
|
|
|
ora #$06 ; Enable kernal+I/O, disable basic
|
|
|
|
sta $01
|
2002-11-24 19:13:19 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; Save system settings and setup the stack
|
|
|
|
|
|
|
|
pla
|
|
|
|
sta mmusave ; Save the memory configuration
|
2002-11-24 11:18:24 +00:00
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-03-08 14:48:00 +00:00
|
|
|
lda #<(__RAM_START__ + __RAM_SIZE__)
|
2000-05-28 13:40:48 +00:00
|
|
|
sta sp
|
2001-03-08 14:48:00 +00:00
|
|
|
lda #>(__RAM_START__ + __RAM_SIZE__)
|
2000-05-28 13:40:48 +00:00
|
|
|
sta sp+1 ; Set argument stack ptr
|
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module constructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
jsr initlib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
jsr callmain
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
; Call module destructors. This is also the _exit entry.
|
2000-11-20 23:05:52 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
_exit: jsr donelib ; Run module destructors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-20 23:05:52 +00:00
|
|
|
; Restore system stuff
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-20 23:05:52 +00:00
|
|
|
ldx spsave
|
2000-05-28 13:40:48 +00:00
|
|
|
txs ; Restore stack pointer
|
|
|
|
lda mmusave
|
|
|
|
sta $01 ; Restore memory configuration
|
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:01:34 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
|
|
|
; Reset changed vectors, back to basic
|
|
|
|
|
|
|
|
jmp RESTOR
|
|
|
|
|
|
|
|
|
2002-11-22 23:50:45 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
|
|
|
|
zpsave: .res zpspace
|
|
|
|
|
|
|
|
.bss
|
|
|
|
|
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|