]> git.sur5r.net Git - cc65/blob - libsrc/cbm510/mainargs.s
Atari: clock_gettime() and clock_settime() implementations
[cc65] / libsrc / cbm510 / mainargs.s
1 ; mainargs.s
2 ;
3 ; 2003-03-07, Ullrich von Bassewitz,
4 ;   based on code from Stefan A. Haubenthal, <polluks@web.de>
5 ; 2005-02-26, Ullrich von Bassewitz
6 ; 2014-09-10, Greg King
7 ;
8 ; Scan a group of arguments that are in BASIC's input-buffer.
9 ; Build an array that points to the beginning of each argument.
10 ; Send, to main(), that array and the count of the arguments.
11 ;
12 ; Command-lines look like these lines:
13 ;
14 ; run
15 ; run : rem
16 ; run:rem arg1 " arg 2 is quoted "  arg3 "" arg5
17 ;
18 ; "run" and "rem" are entokenned; the args. are not.  Leading and trailing
19 ; spaces outside of quotes are ignored.
20 ;
21 ; TO-DO:
22 ; - The "file-name" might be a path-name; don't copy the directory-components.
23 ; - Add a control-character quoting mechanism.
24
25         .constructor    initmainargs, 24
26         .import         __argc, __argv
27         .import         sys_bank, restore_bank
28         .import         sysp0:zp, ptr1:zp
29
30         .include        "cbm510.inc"
31         .macpack        generic
32
33
34 MAXARGS  = 10                   ; Maximum number of arguments allowed
35 REM      = $8f                  ; BASIC token-code
36 NAME_LEN = 16                   ; Maximum length of command-name
37
38 ; Get possible command-line arguments. Goes into the special ONCE segment,
39 ; which may be reused after the startup code is run.
40 ;
41 .segment        "ONCE"
42
43 initmainargs:
44
45 ; Assume that the program was loaded, a moment ago, by the traditional LOAD
46 ; statement.  Save the "most-recent filename" as argument #0.
47 ; Because the buffer, that we're copying into, was zeroed out,
48 ; we don't need to add a NUL character.
49 ;
50         jsr     sys_bank
51         ldy     #FNAM
52         lda     (sysp0),y       ; Get file-name pointer from system bank
53         sta     ptr1
54         iny
55         lda     (sysp0),y
56         sta     ptr1+1
57         iny                     ; FNAM_BANK
58         lda     (sysp0),y
59         tax
60         ldy     #FNAM_LEN
61         lda     (sysp0),y
62         tay
63         lda     #0              ; The terminating NUL character
64         stx     IndReg          ; Look for name in correct bank
65         cpy     #NAME_LEN + 1
66         blt     L1
67         ldy     #NAME_LEN       ; Limit the length
68         bne     L1              ; Branch always
69 L0:     lda     (ptr1),y
70 L1:     sta     name,y
71         dey
72         bpl     L0
73         jsr     restore_bank
74         inc     __argc          ; argc always is equal to at least 1
75
76 ; Find a "rem" token.
77
78         ldx     #0
79 L2:     lda     BASIC_BUF,x
80         bze     done            ; No "rem," no args.
81         inx
82         cmp     #REM
83         bne     L2
84         ldy     #1 * 2
85
86 ; Find the next argument.
87
88 next:   lda     BASIC_BUF,x
89         bze     done            ; End of line reached
90         inx
91         cmp     #' '            ; Skip leading spaces
92         beq     next
93
94 ; Found start of next argument. We've incremented the pointer in X already, so
95 ; it points to the second character of the argument. That is useful because we
96 ; will check now for a quoted argument; in which case, we will have to skip that
97 ; first character.
98
99 found:  cmp     #'"'            ; Is the argument quoted?
100         beq     setterm         ; Jump if so
101         dex                     ; Reset pointer to first argument character
102         lda     #' '            ; A space ends the argument
103 setterm:sta     term            ; Set end-of-argument marker
104
105 ; Now, store a pointer to the argument into the next slot.
106
107         txa                     ; Get low byte
108         add     #<BASIC_BUF
109         sta     argv,y          ; argv[y]= &arg
110         lda     #>$0000
111         adc     #>BASIC_BUF
112         sta     argv+1,y
113         iny
114         iny
115         inc     __argc          ; Found another arg
116
117 ; Search for the end of the argument.
118
119 argloop:lda     BASIC_BUF,x
120         bze     done
121         inx
122         cmp     term
123         bne     argloop
124
125 ; We've found the end of the argument. X points one character behind it, and
126 ; A contains the terminating character. To make the argument a valid C string,
127 ; replace the terminating character by a zero.
128
129         lda     #$00
130         sta     BASIC_BUF-1,x
131
132 ; Check if the maximum number of command-line arguments is reached. If not,
133 ; parse the next one.
134 ;
135         lda     __argc          ; Get low byte of argument count
136         cmp     #MAXARGS        ; Maximum number of arguments reached?
137         blt     next            ; Parse next one if not
138
139 ; (The last vector in argv[] already is NULL.)
140
141 done:   lda     #<argv
142         ldx     #>argv
143         sta     __argv
144         stx     __argv + 1
145         rts
146
147 .segment        "INIT"
148
149 term:   .res    1
150 name:   .res    NAME_LEN + 1
151
152 .data
153
154 ; char* argv[MAXARGS+1]={name};
155 argv:   .addr   name
156         .res    MAXARGS * 2