1 ;; $Id: parsecmd.inc,v 1.10 2004/12/21 06:30:55 hpa Exp $
2 ;; -----------------------------------------------------------------------
4 ;; Copyright 1994-2002 H. Peter Anvin - All Rights Reserved
6 ;; This program is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ;; Boston MA 02111-1307, USA; either version 2 of the License, or
10 ;; (at your option) any later version; incorporated herein by reference.
12 ;; -----------------------------------------------------------------------
17 ;; Command line parser code
22 ; -------------------------------------------------------------------------
23 ; getcommand: Get a keyword from the current "getc" file and match it
24 ; against a list of keywords (keywd_table). Each entry in
25 ; that table should have the following form:
26 ; <32 bit hash value> <16 bit handler offset>
28 ; The handler is called, and upon return this function
29 ; returns with CF = 0. On EOF, this function returns
31 ; -------------------------------------------------------------------------
35 call skipspace ; Skip leading whitespace
37 jc .find ; End of line: try again
39 or al,20h ; Convert to lower case
40 movzx ebx,al ; Hash for a one-char keyword
46 cmp al,' ' ; Whitespace
56 call ungetc ; Return nonwhitespace char to buf
63 lodsd ; Skip entrypoint/argument
66 ; Otherwise unrecognized keyword
73 mov al,10 ; Already at EOL
78 .found_keywd: lodsw ; Load argument into ax
86 .skipline: cmp al,10 ; Search for LF
94 vk_size equ (vk_end + 3) & ~3
95 VKernelBuf: resb vk_size ; "Current" vkernel
96 AppendBuf resb max_cmd_len+1 ; append=
97 Ontimeout resb max_cmd_len+1 ; ontimeout
98 Onerror resb max_cmd_len+1 ; onerror
99 KbdMap resb 256 ; Keyboard map
100 FKeyName resb 10*FILENAME_MAX ; File names for F-key help
101 KernelCNameLen resw 1 ; Length of unmangled kernel name
102 InitRDCNameLen resw 1 ; Length of unmangled initrd name
104 KernelName resb FILENAME_MAX+1 ; Mangled name for kernel
105 KernelCName resb FILENAME_MAX+2 ; Unmangled kernel name
106 InitRDCName resb FILENAME_MAX+2 ; Unmangled initrd name
108 KernelName resb FILENAME_MAX ; Mangled name for kernel
109 KernelCName resb FILENAME_MAX ; Unmangled kernel name
110 InitRDCName resb FILENAME_MAX ; Unmangled initrd name
112 MNameBuf resb FILENAME_MAX
113 InitRD resb FILENAME_MAX