]> git.sur5r.net Git - cc65/blobdiff - libsrc/pet/mainargs.s
Renamed INITBSS to INIT and INIT to ONCE.
[cc65] / libsrc / pet / mainargs.s
index 8ba6e31170393d15f40aacb433af4d082f349269..bc685b6998407a19648c412163adf03dd6156f14 100644 (file)
@@ -16,10 +16,10 @@ NAME_LEN = 16                   ; Maximum length of command-name
 
 
 ;---------------------------------------------------------------------------
-; Get possible command-line arguments. Goes into the special INIT segment,
+; Get possible command-line arguments. Goes into the special ONCE segment,
 ; which may be reused after the startup code is run
 
-.segment        "INIT"
+.segment        "ONCE"
 
 .proc   initmainargs
 
@@ -111,7 +111,7 @@ done:   lda     #<argv
 
 .endproc
 
-.segment        "INITBSS"
+.segment        "INIT"
 
 term:   .res    1
 name:   .res    NAME_LEN + 1