2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Startup code for cc65 (PET version)
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export _exit
|
|
|
|
.export __STARTUP__ : absolute = 1 ; Mark as startup
|
|
|
|
.import initlib, donelib
|
|
|
|
.import zerobss, push0
|
|
|
|
.import callmain
|
|
|
|
.import CLRCH, BSOUT
|
|
|
|
.importzp ST
|
|
|
|
|
|
|
|
.include "zeropage.inc"
|
|
|
|
.include "pet.inc"
|
|
|
|
.include "../cbm/cbm.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2009-12-09 12:42:24 +00:00
|
|
|
; Startup code
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "STARTUP"
|
2009-12-09 12:42:24 +00:00
|
|
|
|
|
|
|
Start:
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Save the zero-page locations that we need.
|
2009-12-09 12:42:24 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L1: lda sp,x
|
|
|
|
sta zpsave,x
|
|
|
|
dex
|
|
|
|
bpl L1
|
2009-12-09 12:42:24 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Switch to the second charset. The routine that is called by BSOUT to switch the
|
|
|
|
; character set will use FNLEN as temporary storage -- YUCK! Since the
|
|
|
|
; initmainargs routine, which parses the command line for arguments, needs that
|
2009-02-22 17:51:12 +00:00
|
|
|
; information, we need to save and restore it here.
|
|
|
|
; Thanks to Stefan Haubenthal for this information!
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda FNLEN
|
|
|
|
pha ; Save FNLEN
|
|
|
|
lda #14
|
|
|
|
; sta $E84C ; See PET FAQ
|
|
|
|
jsr BSOUT
|
|
|
|
pla
|
|
|
|
sta FNLEN ; Restore FNLEN
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Clear the BSS data.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr zerobss
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Save some system stuff; and, set up the stack.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
tsx
|
|
|
|
stx spsave ; Save the system stack ptr
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda MEMSIZE
|
|
|
|
sta sp
|
|
|
|
lda MEMSIZE+1
|
|
|
|
sta sp+1 ; Set argument stack ptr
|
2006-08-17 19:19:55 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Call the module constructors.
|
2009-02-22 18:10:01 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr initlib
|
2009-02-22 18:10:01 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Push the command-line arguments; and, call main().
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr callmain
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Call the module destructors. This is also the exit() entry.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
_exit: pha ; Save the return code on stack
|
|
|
|
jsr donelib
|
2006-08-17 19:19:55 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Copy back the zero-page stuff.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #zpspace-1
|
|
|
|
L2: lda zpsave,x
|
|
|
|
sta sp,x
|
|
|
|
dex
|
|
|
|
bpl L2
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Store the program return code into BASIC's status variable.
|
2004-03-02 17:08:07 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
pla
|
|
|
|
sta ST
|
2004-03-02 17:08:07 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Restore the stack pointer.
|
2004-03-08 20:38:58 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx spsave
|
|
|
|
txs ; Restore stack pointer
|
2004-03-08 20:38:58 +00:00
|
|
|
|
2014-08-23 18:05:36 +00:00
|
|
|
; Back to BASIC.
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-11-22 17:43:30 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "INIT"
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
zpsave: .res zpspace
|
2008-07-03 19:39:14 +00:00
|
|
|
|
2013-02-12 22:39:38 +00:00
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.bss
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
spsave: .res 1
|
|
|
|
mmusave:.res 1
|