2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (Plus/4 version)
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
2000-11-23 19:21:05 +00:00
|
|
|
.export _exit
|
2002-11-22 23:41:20 +00:00
|
|
|
.export brk_jmp
|
|
|
|
|
|
|
|
.import condes, initlib, donelib
|
2003-03-10 21:21:46 +00:00
|
|
|
.import push0, callmain, zerobss
|
2002-11-22 22:16:20 +00:00
|
|
|
.import __IRQFUNC_TABLE__, __IRQFUNC_COUNT__
|
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 "plus4.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Constants
|
|
|
|
|
|
|
|
IRQInd = $500 ; JMP $0000 - used as indirect IRQ vector
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; ------------------------------------------------------------------------
|
2002-11-22 22:16:20 +00:00
|
|
|
; Place the startup code in a special segment to cope with the quirks of
|
|
|
|
; plus/4 banking.
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
.segment "STARTUP"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.word Head ; Load address
|
|
|
|
Head: .word @Next
|
|
|
|
.word 1000 ; Line number
|
|
|
|
.byte $9E,"4109" ; SYS 4109
|
|
|
|
.byte $00 ; End of BASIC line
|
|
|
|
@Next: .word 0 ; BASIC end marker
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
sei ; No interrupts since we're banking out the ROM
|
|
|
|
sta ENABLE_RAM
|
2000-10-30 21:02:49 +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
|
2002-11-22 22:16:20 +00:00
|
|
|
sta ENABLE_ROM
|
|
|
|
cli
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Close open files
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
jsr $FFCC ; CLRCH
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Switch to second charset
|
|
|
|
|
|
|
|
lda #14
|
2002-11-22 22:16:20 +00:00
|
|
|
jsr $FFD2 ; BSOUT
|
|
|
|
|
|
|
|
; Setup the IRQ vector in the banked RAM and switch off the ROM
|
|
|
|
|
|
|
|
sei ; No ints, handler not yet in place
|
|
|
|
sta ENABLE_RAM
|
|
|
|
lda #<IRQ
|
|
|
|
sta $FFFE ; Install interrupt handler
|
|
|
|
lda #>IRQ
|
|
|
|
sta $FFFF
|
|
|
|
cli ; Allow interrupts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; Save system stuff and setup the stack. The stack starts at the top of the
|
|
|
|
; usable RAM.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave ; save system stk ptr
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
lda #<$FD00
|
|
|
|
sta sp
|
|
|
|
lda #>$FD00
|
|
|
|
sta sp+1
|
2000-05-28 13:40:48 +00:00
|
|
|
|
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
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
; If we have IRQ functions, chain our stub into the IRQ vector
|
|
|
|
|
|
|
|
lda #<__IRQFUNC_COUNT__
|
|
|
|
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
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
NoIRQ1: jsr callmain
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
; Back from main (this is also the _exit entry). Reset the IRQ vector if
|
|
|
|
; we chained it.
|
2000-11-22 22:19:09 +00:00
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
_exit: lda #<__IRQFUNC_COUNT__
|
|
|
|
beq NoIRQ2
|
|
|
|
lda IRQInd+1
|
|
|
|
ldx IRQInd+2
|
|
|
|
sei
|
|
|
|
sta IRQVec
|
|
|
|
stx IRQVec+1
|
|
|
|
cli
|
|
|
|
|
|
|
|
; Run module destructors.
|
|
|
|
|
|
|
|
NoIRQ2: jsr donelib ; Run module destructors
|
2000-11-22 22:19:09 +00:00
|
|
|
|
|
|
|
; Restore system stuff
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
ldx spsave
|
|
|
|
txs
|
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:02:49 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; Enable the ROM, reset changed vectors and return to BASIC
|
|
|
|
|
|
|
|
sta ENABLE_ROM
|
|
|
|
jmp $FF8A ; RESTOR
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; IRQ handler
|
|
|
|
|
|
|
|
.segment "LOWCODE"
|
|
|
|
|
|
|
|
IRQ: pha
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
tsx ; Get the stack pointer
|
|
|
|
lda $0103,x ; Get the saved status register
|
2002-11-22 23:41:20 +00:00
|
|
|
tax ; Save for later
|
|
|
|
and #$10 ; Test for BRK bit
|
|
|
|
bne dobreak
|
|
|
|
lda #>irq_ret ; Push new return address
|
2002-11-22 22:16:20 +00:00
|
|
|
pha
|
2002-11-22 23:41:20 +00:00
|
|
|
lda #<irq_ret
|
2002-11-22 22:16:20 +00:00
|
|
|
pha
|
|
|
|
txa
|
|
|
|
pha
|
|
|
|
sta ENABLE_ROM ; Switch to ROM
|
|
|
|
jmp ($FFFE) ; Jump to kernal irq handler
|
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
irq_ret:
|
|
|
|
sta ENABLE_RAM ; Switch back to RAM
|
2002-11-22 22:16:20 +00:00
|
|
|
pla
|
|
|
|
tax
|
|
|
|
pla
|
|
|
|
rti
|
|
|
|
|
2002-11-22 23:41:20 +00:00
|
|
|
dobreak:
|
|
|
|
lda brk_jmp+2 ; Check high byte of address
|
|
|
|
beq nohandler
|
|
|
|
jmp brk_jmp ; Jump to the handler
|
|
|
|
|
|
|
|
; No break handler installed, jump to ROM
|
|
|
|
|
|
|
|
nohandler:
|
|
|
|
tya
|
|
|
|
pha ; ROM handler expects Y on stack
|
|
|
|
sta ENABLE_ROM
|
|
|
|
jmp (BRKVec) ; Jump indirect to the break vector
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Stub for the IRQ chain. Is used only if there are IRQs defined. Needed in
|
|
|
|
; low memory because of the banking.
|
|
|
|
|
|
|
|
.segment "LOWCODE"
|
|
|
|
|
|
|
|
IRQStub:
|
|
|
|
cld ; Just to be sure
|
|
|
|
sta ENABLE_RAM ; Switch to RAM
|
|
|
|
ldy #<(__IRQFUNC_COUNT__*2)
|
|
|
|
lda #<__IRQFUNC_TABLE__
|
|
|
|
ldx #>__IRQFUNC_TABLE__
|
|
|
|
jsr condes ; Call the IRQ functions
|
|
|
|
sta ENABLE_ROM
|
|
|
|
jmp IRQInd ; Jump to the saved IRQ vector
|
|
|
|
|
2002-11-22 22:16:20 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.data
|
2002-11-22 23:41:20 +00:00
|
|
|
zpsave: .res zpspace
|
|
|
|
|
|
|
|
; BRK handling
|
|
|
|
brk_jmp: jmp $0000
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.bss
|
2002-11-22 23:41:20 +00:00
|
|
|
spsave: .res 1
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|