2004-04-28 09:48:06 +00:00
|
|
|
; mainargs.s
|
2003-03-10 21:21:46 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2003-03-07
|
2004-04-28 09:48:06 +00:00
|
|
|
; Based on code from Stefan A. Haubenthal, <polluks@web.de>
|
|
|
|
; 2003-05-18, Greg King
|
2005-02-26 09:28:46 +00:00
|
|
|
; 2004-04-28, 2005-02-26, Ullrich von Bassewitz
|
2003-03-10 21:21:46 +00:00
|
|
|
;
|
2004-04-28 09:48:06 +00:00
|
|
|
; Scan a group of arguments that are in BASIC's input-buffer.
|
|
|
|
; Build an array that points to the beginning of each argument.
|
|
|
|
; Send, to main(), that array and the count of the arguments.
|
2003-03-10 21:21:46 +00:00
|
|
|
;
|
2004-04-28 09:48:06 +00:00
|
|
|
; Command-lines look like these lines:
|
|
|
|
;
|
|
|
|
; run
|
|
|
|
; run : rem
|
|
|
|
; run:rem arg1 " arg 2 is quoted " arg3 "" arg5
|
|
|
|
;
|
|
|
|
; "run" and "rem" are entokenned; the args. are not. Leading and trailing
|
|
|
|
; spaces outside of quotes are ignored.
|
|
|
|
;
|
|
|
|
; TO-DO:
|
|
|
|
; - The "file-name" might be a path-name; don't copy the directory-components.
|
|
|
|
; - Add a control-character quoting mechanism.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.constructor initmainargs, 24
|
|
|
|
.import __argc, __argv
|
2004-04-28 09:48:06 +00:00
|
|
|
|
2018-11-25 08:46:05 +00:00
|
|
|
.include "cbm_kernal.inc"
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "c128.inc"
|
2004-04-28 09:48:06 +00:00
|
|
|
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
MAXARGS = 10 ; Maximum number of arguments allowed
|
|
|
|
REM = $8f ; BASIC token-code
|
2015-10-14 20:52:09 +00:00
|
|
|
NAME_LEN = 16 ; Maximum length of command-name
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
; Get possible command-line arguments. Goes into the special ONCE segment,
|
2005-02-26 09:28:46 +00:00
|
|
|
; which may be reused after the startup code is run
|
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "ONCE"
|
2005-02-26 09:28:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
initmainargs:
|
|
|
|
|
|
|
|
; Assume that the program was loaded, a moment ago, by the traditional LOAD
|
|
|
|
; statement. Save the "most-recent filename" as argument #0.
|
2015-10-14 20:52:09 +00:00
|
|
|
|
|
|
|
lda #0 ; The terminating NUL character
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy FNAM_LEN
|
|
|
|
cpy #NAME_LEN + 1
|
|
|
|
bcc L1
|
2015-10-14 20:52:09 +00:00
|
|
|
ldy #NAME_LEN ; Limit the length
|
|
|
|
bne L1 ; Branch always
|
2004-04-28 09:48:06 +00:00
|
|
|
L0: lda #FNAM ; Load vector address for FETCH routine
|
|
|
|
ldx FNAM_BANK ; Load bank for FETCH routine
|
|
|
|
jsr INDFET ; Load byte from (FETVEC),y
|
2015-10-14 20:52:09 +00:00
|
|
|
L1: sta name,y ; Save byte from filename
|
|
|
|
dey
|
2013-05-09 11:56:54 +00:00
|
|
|
bpl L0
|
|
|
|
inc __argc ; argc always is equal to, at least, 1
|
2004-04-28 09:48:06 +00:00
|
|
|
|
|
|
|
; Find the "rem" token.
|
2015-10-14 20:52:09 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #0
|
|
|
|
L2: lda BASIC_BUF,x
|
2015-10-14 20:52:09 +00:00
|
|
|
beq done ; No "rem," no args.
|
2013-05-09 11:56:54 +00:00
|
|
|
inx
|
|
|
|
cmp #REM
|
|
|
|
bne L2
|
|
|
|
ldy #1 * 2
|
2004-04-28 09:48:06 +00:00
|
|
|
|
|
|
|
; Find the next argument
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
next: lda BASIC_BUF,x
|
|
|
|
beq done ; End of line reached
|
|
|
|
inx
|
|
|
|
cmp #' ' ; Skip leading spaces
|
2015-10-14 20:52:09 +00:00
|
|
|
beq next
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
; Found start of next argument. We've incremented the pointer in X already, so
|
|
|
|
; it points to the second character of the argument. This is useful since we
|
|
|
|
; will check now for a quoted argument, in which case we will have to skip this
|
|
|
|
; first character.
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
found: cmp #'"' ; Is the argument quoted?
|
|
|
|
beq setterm ; Jump if so
|
|
|
|
dex ; Reset pointer to first argument character
|
|
|
|
lda #' ' ; A space ends the argument
|
|
|
|
setterm:sta term ; Set end of argument marker
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
; Now store a pointer to the argument into the next slot. Since the BASIC
|
|
|
|
; input buffer is located at the start of a RAM page, no calculations are
|
|
|
|
; necessary.
|
|
|
|
|
|
|
|
txa ; Get low byte
|
2013-05-09 11:56:54 +00:00
|
|
|
sta argv,y ; argv[y]= &arg
|
|
|
|
iny
|
|
|
|
lda #>BASIC_BUF
|
|
|
|
sta argv,y
|
|
|
|
iny
|
2004-04-28 09:48:06 +00:00
|
|
|
inc __argc ; Found another arg
|
|
|
|
|
|
|
|
; Search for the end of the argument
|
|
|
|
|
|
|
|
argloop:lda BASIC_BUF,x
|
|
|
|
beq done
|
|
|
|
inx
|
|
|
|
cmp term
|
|
|
|
bne argloop
|
|
|
|
|
|
|
|
; We've found the end of the argument. X points one character behind it, and
|
|
|
|
; A contains the terminating character. To make the argument a valid C string,
|
|
|
|
; replace the terminating character by a zero.
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta BASIC_BUF-1,x
|
|
|
|
|
|
|
|
; Check if the maximum number of command line arguments is reached. If not,
|
|
|
|
; parse the next one.
|
|
|
|
|
|
|
|
lda __argc ; Get low byte of argument count
|
|
|
|
cmp #MAXARGS ; Maximum number of arguments reached?
|
|
|
|
bcc next ; Parse next one if not
|
|
|
|
|
|
|
|
; (The last vector in argv[] already is NULL.)
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
done: lda #<argv
|
|
|
|
ldx #>argv
|
|
|
|
sta __argv
|
|
|
|
stx __argv + 1
|
|
|
|
rts
|
2004-04-28 09:48:06 +00:00
|
|
|
|
2016-03-06 20:26:22 +00:00
|
|
|
.segment "INIT"
|
2015-10-14 20:52:09 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
term: .res 1
|
|
|
|
name: .res NAME_LEN + 1
|
2003-03-10 21:21:46 +00:00
|
|
|
|
2004-04-28 09:48:06 +00:00
|
|
|
.data
|
2015-10-14 20:52:09 +00:00
|
|
|
|
|
|
|
; char* argv[MAXARGS+1]={name};
|
2004-04-28 09:48:06 +00:00
|
|
|
argv: .addr name
|
2013-05-09 11:56:54 +00:00
|
|
|
.res MAXARGS * 2
|