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
|
2004-04-04 14:28:57 +00:00
|
|
|
.import initlib, donelib, callirq
|
2004-10-08 19:56:29 +00:00
|
|
|
.import zerobss
|
2003-03-10 21:21:46 +00:00
|
|
|
.import callmain
|
2002-11-19 23:02:47 +00:00
|
|
|
.import RESTOR, BSOUT, CLRCH
|
2004-09-20 10:24:59 +00:00
|
|
|
.import __INTERRUPTOR_COUNT__
|
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
|
2004-02-02 13:34:12 +00:00
|
|
|
.word .version ; Line number
|
2000-05-28 13:40:48 +00:00
|
|
|
.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
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
; If we have IRQ functions, chain our stub into the IRQ vector
|
|
|
|
|
2004-09-20 10:24:59 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-03-23 21:50:15 +00:00
|
|
|
beq NoIRQ1
|
|
|
|
lda IRQVec
|
|
|
|
ldx IRQVec+1
|
|
|
|
sta IRQInd+1
|
|
|
|
stx IRQInd+2
|
|
|
|
lda #<IRQStub
|
|
|
|
ldx #>IRQStub
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
; Push arguments and call main
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
NoIRQ1: jsr callmain
|
|
|
|
|
|
|
|
; Back from main (This is also the _exit entry). Reset the IRQ vector if we
|
|
|
|
; chained it.
|
|
|
|
|
|
|
|
_exit: pha ; Save the return code on stack
|
2004-09-20 10:24:59 +00:00
|
|
|
lda #<__INTERRUPTOR_COUNT__
|
2004-03-23 21:50:15 +00:00
|
|
|
beq NoIRQ2
|
|
|
|
lda IRQInd+1
|
|
|
|
ldx IRQInd+2
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
; Run module destructors
|
2000-11-20 23:05:52 +00:00
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
NoIRQ2: jsr donelib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:01:34 +00:00
|
|
|
ldx #zpspace-1
|
2004-03-23 21:50:15 +00:00
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
2004-03-02 17:08:07 +00:00
|
|
|
; Place the program return code into ST
|
|
|
|
|
|
|
|
pla
|
|
|
|
sta ST
|
|
|
|
|
2004-03-08 20:38:58 +00:00
|
|
|
; Restore system stuff
|
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs ; Restore stack pointer
|
|
|
|
ldx mmusave
|
|
|
|
stx $01 ; Restore memory configuration
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Reset changed vectors, back to basic
|
|
|
|
|
|
|
|
jmp RESTOR
|
|
|
|
|
2004-03-23 21:50:15 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; The IRQ vector jumps here, if condes routines are defined with type 2.
|
|
|
|
|
|
|
|
IRQStub:
|
|
|
|
cld ; Just to be sure
|
2004-04-04 14:28:57 +00:00
|
|
|
jsr callirq ; Call the functions
|
2004-03-23 21:50:15 +00:00
|
|
|
jmp IRQInd ; Jump to the saved IRQ vector
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 23:50:45 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
|
|
|
|
zpsave: .res zpspace
|
2004-03-23 21:50:15 +00:00
|
|
|
IRQInd: jmp $0000
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.bss
|
|
|
|
|
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|