]> git.sur5r.net Git - cc65/blobdiff - libsrc/c128/crt0.s
remove superfluous ".code" line
[cc65] / libsrc / c128 / crt0.s
index bd9ca2dc7f1a1de75abbb463affe15160bbc47b9..d0a61ab00a403cc58ced470045f6725d693cdcc6 100644 (file)
@@ -1,15 +1,14 @@
 ;
 ; Startup code for cc65 (C128 version)
-;
-; This must be the *first* file on the linker command line
 ;
 
        .export         _exit
-       .import         condes, initlib, donelib
+        .export         __STARTUP__ : absolute = 1      ; Mark as startup
+       .import         callirq, initlib, donelib
        .import         zerobss
        .import         push0, callmain
         .import         RESTOR, BSOUT, CLRCH
-       .import         __IRQFUNC_TABLE__, __IRQFUNC_COUNT__
+       .import         __INTERRUPTOR_COUNT__
        .import         __RAM_START__, __RAM_SIZE__
 
         .include        "zeropage.inc"
@@ -50,11 +49,6 @@ Head:   .word   @Next
        lda     #14
        jsr     BSOUT
 
-; Set the bank for the file name our execution bank
-
-        lda     #0
-        sta     FNAM_BANK
-
 ; Before doing anything else, we have to setup our banking configuration.
 ; Otherwise just the lowest 16K are actually RAM. Writing through the ROM
 ; to the underlying RAM works, but it is bad style.
@@ -89,13 +83,9 @@ L1:  lda     sp,x
        lda     #>(__RAM_START__ + __RAM_SIZE__)
                sta     sp+1            ; Set argument stack ptr
 
-; Call module constructors
-
-       jsr     initlib
-
 ; If we have IRQ functions, chain our stub into the IRQ vector
 
-        lda     #<__IRQFUNC_COUNT__
+        lda     #<__INTERRUPTOR_COUNT__
        beq     NoIRQ1
        lda     IRQVec
                ldx     IRQVec+1
@@ -108,15 +98,29 @@ L1:        lda     sp,x
        stx     IRQVec+1
        cli
 
+; Call module constructors
+
+NoIRQ1: jsr     initlib
+
+; Set the bank for the file name to our execution bank. We must do this,
+; *after* calling constructors, because some of them may depend on the
+; original value of this register.
+
+        lda     #0
+        sta     FNAM_BANK
+
 ; Push arguments and call main()
 
-NoIRQ1:        jsr     callmain
+        jsr     callmain
 
-; Back from main (this is also the _exit entry). Reset the IRQ vector if we 
-; chained it.
+; Back from main (this is also the _exit entry). Run module destructors
 
-_exit: pha                             ; Save the return code on stack
-       lda     #<__IRQFUNC_COUNT__
+_exit:  jsr     donelib
+
+; Reset the IRQ vector if we chained it.
+
+        pha                            ; Save the return code on stack
+       lda     #<__INTERRUPTOR_COUNT__
        beq     NoIRQ2
        lda     IRQInd+1
        ldx     IRQInd+2
@@ -125,33 +129,26 @@ _exit:    pha                             ; Save the return code on stack
        stx     IRQVec+1
        cli
 
-; Run module destructors
-
-NoIRQ2: jsr            donelib
-
-; Reset the stack
-
-       ldx     spsave
-       txs
-
 ; Copy back the zero page stuff
 
-       ldx     #zpspace-1
+NoIRQ2: ldx     #zpspace-1
 L2:    lda     zpsave,x
        sta     sp,x
        dex
        bpl     L2
 
-; Reset the memory configuration
-
-               lda     mmusave
-       sta     MMU_CR
-
 ; Place the program return code into ST
 
        pla
        sta     ST
 
+; Reset the stack and the memory configuration
+
+       ldx     spsave
+       txs
+               ldx     mmusave
+       stx     MMU_CR
+
 ; Done, restore kernal vectors in an attempt to cleanup
 
        jmp     RESTOR
@@ -174,10 +171,7 @@ IRQStub:
        pha                             ; And save on stack
        lda     #MMU_CFG_CC65           ; Bank 0 with kernal ROM
        sta     MMU_CR
-       ldy     #<(__IRQFUNC_COUNT__*2)
-               lda     #<__IRQFUNC_TABLE__
-       ldx     #>__IRQFUNC_TABLE__
-       jsr     condes                  ; Call the functions
+               jsr     callirq                 ; Call the functions
        pla                             ; Get old register value
        sta     MMU_CR
                jmp     IRQInd                  ; Jump to the saved IRQ vector
@@ -186,7 +180,8 @@ IRQStub:
 ; ------------------------------------------------------------------------
 ; Data
 
-.data
+.segment        "ZPSAVE"
+
 zpsave:        .res    zpspace
 
 .bss