2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (ATARI version)
|
|
|
|
;
|
|
|
|
; Contributing authors:
|
|
|
|
; Mark Keates
|
|
|
|
; Freddy Offenga
|
|
|
|
; Christian Groessler
|
|
|
|
;
|
|
|
|
; This must be the *first* file on the linker command line
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _exit
|
2000-12-09 22:31:07 +00:00
|
|
|
.constructor initsp,26
|
2000-12-03 23:50:16 +00:00
|
|
|
|
2000-11-23 19:05:32 +00:00
|
|
|
.import getargs, argc, argv
|
2000-11-22 22:19:09 +00:00
|
|
|
.import initlib, donelib
|
2000-11-23 19:05:32 +00:00
|
|
|
.import zerobss, pushax
|
2000-05-30 22:21:40 +00:00
|
|
|
.import _main,__filetab,getfd
|
2000-05-28 13:40:48 +00:00
|
|
|
.import __CODE_LOAD__, __BSS_LOAD__
|
|
|
|
|
|
|
|
.include "atari.inc"
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Define and export the ZP variables for the runtime
|
|
|
|
|
|
|
|
.exportzp sp, sreg, regsave
|
|
|
|
.exportzp ptr1, ptr2, ptr3, ptr4
|
|
|
|
.exportzp tmp1, tmp2, tmp3, tmp4
|
|
|
|
.exportzp fntemp, regbank, zpspace
|
|
|
|
|
2000-09-07 21:49:13 +00:00
|
|
|
|
|
|
|
.zeropage
|
|
|
|
|
|
|
|
zpstart = *
|
|
|
|
sp: .res 2 ; Stack pointer
|
|
|
|
sreg: .res 2 ; Secondary register/high 16 bit for longs
|
|
|
|
regsave: .res 2 ; slot to save/restore (E)AX into
|
|
|
|
ptr1: .res 2
|
|
|
|
ptr2: .res 2
|
|
|
|
ptr3: .res 2
|
|
|
|
ptr4: .res 2
|
|
|
|
tmp1: .res 1
|
|
|
|
tmp2: .res 1
|
|
|
|
tmp3: .res 1
|
|
|
|
tmp4: .res 1
|
|
|
|
fntemp: .res 2 ; Pointer to file name
|
|
|
|
regbank: .res 6 ; 6 byte register bank
|
|
|
|
|
|
|
|
zpspace = * - zpstart ; Zero page space allocated
|
|
|
|
|
|
|
|
.code
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; EXE header
|
|
|
|
|
|
|
|
.segment "EXEHDR"
|
|
|
|
.word $FFFF
|
|
|
|
.word __CODE_LOAD__
|
|
|
|
.word __BSS_LOAD__ - 1
|
|
|
|
.code
|
|
|
|
.reloc
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Actual code
|
|
|
|
|
|
|
|
rts ; fix for SpartaDOS / OS/A+
|
|
|
|
; they first call the entry point from AUTOSTRT and
|
|
|
|
; then the load addess (this rts here).
|
|
|
|
; We point AUTOSTRT directly after the rts.
|
|
|
|
|
|
|
|
; Real entry point:
|
|
|
|
|
|
|
|
; Save the zero page locations we need
|
|
|
|
|
2000-10-30 21:46:45 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L1
|
|
|
|
|
|
|
|
; Clear the BSS data
|
|
|
|
|
|
|
|
jsr zerobss
|
|
|
|
|
|
|
|
; setup the stack
|
|
|
|
|
|
|
|
tsx
|
|
|
|
stx spsave
|
|
|
|
|
2000-12-03 23:50:16 +00:00
|
|
|
; report memory usage
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda APPMHI
|
2000-12-03 23:50:16 +00:00
|
|
|
sta appmsav ; remember old APPMHI value
|
2000-05-28 13:40:48 +00:00
|
|
|
lda APPMHI+1
|
|
|
|
sta appmsav+1
|
2000-06-25 01:45:30 +00:00
|
|
|
|
2000-12-03 23:50:16 +00:00
|
|
|
lda MEMTOP
|
|
|
|
sta APPMHI ; initialize our APPMHI value
|
|
|
|
ldx MEMTOP+1
|
2000-06-25 01:45:30 +00:00
|
|
|
stx APPMHI+1
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2000-12-03 21:40:07 +00:00
|
|
|
; Call module constructors
|
|
|
|
|
|
|
|
jsr initlib
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; set left margin to 0
|
|
|
|
|
|
|
|
lda LMARGN
|
|
|
|
sta old_lmargin
|
|
|
|
lda #0
|
|
|
|
sta LMARGN
|
|
|
|
|
|
|
|
; set keyb to upper/lowercase mode
|
|
|
|
|
|
|
|
ldx SHFLOK
|
|
|
|
stx old_shflok
|
|
|
|
sta SHFLOK
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
; Initialize conio stuff
|
|
|
|
|
|
|
|
lda #$FF
|
|
|
|
sta CH
|
|
|
|
|
2000-05-30 22:21:40 +00:00
|
|
|
; set stdio stream handles
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda #0
|
2000-05-30 22:21:40 +00:00
|
|
|
jsr getfd
|
|
|
|
sta __filetab ; setup stdin
|
|
|
|
lda #0
|
|
|
|
jsr getfd
|
|
|
|
sta __filetab + 2 ; setup stdout
|
|
|
|
lda #0
|
|
|
|
jsr getfd
|
|
|
|
sta __filetab + 4 ; setup stderr
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Pass command line if present
|
|
|
|
|
|
|
|
jsr getargs
|
|
|
|
|
|
|
|
lda argc
|
|
|
|
ldx argc+1
|
2000-11-22 22:19:09 +00:00
|
|
|
jsr pushax ; argc
|
2000-05-28 13:40:48 +00:00
|
|
|
lda #<argv
|
|
|
|
ldx #>argv
|
2000-11-22 22:19:09 +00:00
|
|
|
jsr pushax ; argv
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
ldy #4 ; Argument size
|
|
|
|
jsr _main ; call the users code
|
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-05-28 13:40:48 +00:00
|
|
|
|
2000-11-22 22:19:09 +00:00
|
|
|
_exit: jsr donelib ; Run module destructors
|
|
|
|
|
|
|
|
; Restore system stuff
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
ldx spsave
|
2000-11-22 22:19:09 +00:00
|
|
|
txs ; Restore stack pointer
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; restore left margin
|
|
|
|
|
|
|
|
lda old_lmargin
|
|
|
|
sta LMARGN
|
|
|
|
|
|
|
|
; restore kb mode
|
|
|
|
|
|
|
|
lda old_shflok
|
|
|
|
sta SHFLOK
|
|
|
|
|
|
|
|
; restore APPMHI
|
2000-09-07 21:49:13 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
lda appmsav
|
|
|
|
sta APPMHI
|
|
|
|
lda appmsav+1
|
|
|
|
sta APPMHI+1
|
|
|
|
|
|
|
|
; Copy back the zero page stuff
|
|
|
|
|
2000-10-30 21:46:45 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
2000-05-28 13:40:48 +00:00
|
|
|
bpl L2
|
|
|
|
|
|
|
|
; Back to DOS
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
2000-06-25 01:45:30 +00:00
|
|
|
; *** end of main startup code
|
|
|
|
|
2000-12-03 23:50:16 +00:00
|
|
|
; setup sp
|
2000-06-25 01:45:30 +00:00
|
|
|
|
2000-12-09 22:31:07 +00:00
|
|
|
initsp:
|
2000-12-03 23:50:16 +00:00
|
|
|
lda APPMHI
|
|
|
|
sta sp
|
|
|
|
lda APPMHI+1
|
|
|
|
sta sp+1
|
2000-06-25 01:45:30 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
.data
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
zpsave: .res zpspace
|
2000-06-25 01:45:30 +00:00
|
|
|
|
|
|
|
.bss
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
spsave: .res 1
|
|
|
|
appmsav: .res 1
|
|
|
|
old_shflok: .res 1
|
|
|
|
old_lmargin: .res 1
|
|
|
|
|
|
|
|
.segment "AUTOSTRT"
|
|
|
|
.word $02E0
|
|
|
|
.word $02E1
|
|
|
|
.word __CODE_LOAD__ + 1
|