From: Robert Pengelly Date: Mon, 30 Sep 2024 14:13:27 +0000 (+0100) Subject: Add PATH to help X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=e2dd6a18cfac037fd18f42f04a8d0fbd9431a2b1;p=chimaera.git Add PATH to help --- diff --git a/build/chimaera.img b/build/chimaera.img index 1fa0819..89c9d7b 100644 Binary files a/build/chimaera.img and b/build/chimaera.img differ diff --git a/build/chimaera.vhd b/build/chimaera.vhd index 433ddb8..8a05227 100644 Binary files a/build/chimaera.vhd and b/build/chimaera.vhd differ diff --git a/src/apps/pcomm/pcomm.asm b/src/apps/pcomm/pcomm.asm index ac9d971..0816320 100644 --- a/src/apps/pcomm/pcomm.asm +++ b/src/apps/pcomm/pcomm.asm @@ -2218,6 +2218,7 @@ _handler_help.msg: db "ECHO Specifies the text to display to the screen.", HEX (0D), HEX (0A) db "EXIT Exit the current shell if it's not the last instance.", HEX (0D), HEX (0A) db "MKDIR Create a new directory.", HEX (0D), HEX (0A) + db "PATH Displays or changes the value of the PATH environment variable.", HEX (0D), HEX (0A) db "REBOOT Reboots the machine.", HEX (0D), HEX (0A) db "RMDIR Delete an empty directory.", HEX (0D), HEX (0A) db "SET Display, enable or disable environment variables.", HEX (0D), HEX (0A) @@ -3080,21 +3081,20 @@ _err_invalid: db "Bad command or file name - ", HEX ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Data area. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -_formatted_command: db 256 dup (0) -_full_path: db 256 dup (0) -_temp: db 257 dup (0) +_autoexec: db "\\AUTOEXEC.BAT", HEX (00) +_fn_wild: db "*.*", HEX (00) -_autoexec: db "AUTOEXEC.BAT", HEX (00) _batch_flags: db "r", HEX (00) - _echo_off: db "off", HEX (00) -_echo_on: db "on", HEX (00) +_echo_on: db "on", HEX (00) +_formatted_command: db 256 dup (0) +_full_path: db 256 dup (0) +_temp: db 257 dup (0) + +_ll_scratch: dw HEX (0000) _echo_line: dw HEX (0001) _in_batch: dw HEX (0000) -_ll_scratch: dw HEX (0000) - -_fn_wild: db "*.*", HEX (00) _dta_addr: dw HEX (0000) _insert: dw HEX (0000)