diff --git a/applications/sh/commands/commands.asm b/applications/sh/commands/commands.asm index 4c8434d..39c523a 100644 --- a/applications/sh/commands/commands.asm +++ b/applications/sh/commands/commands.asm @@ -61,5 +61,5 @@ shell_invalid_command_string: data.str "invalid command or FXF binary" data.8 10 #include "commands/diskrm.asm" #include "commands/exit.asm" #include "commands/help.asm" - #include "commands/type.asm" #include "commands/shutdown.asm" + #include "commands/type.asm" diff --git a/applications/sh/commands/help.asm b/applications/sh/commands/help.asm index 5c118c3..666aa85 100644 --- a/applications/sh/commands/help.asm +++ b/applications/sh/commands/help.asm @@ -22,8 +22,8 @@ shell_help_text: data.str "diskrm | remove disk $0" data.8 10 data.str "exit | exit the shell" data.8 10 data.str "help | show this help text" data.8 10 - data.str "type | print file $0 of type $1" data.8 10 data.str "shutdown| turn the computer off" data.8 10 + data.str "type | print file $0 of type $1" data.8 10 data.8 10 data.str "type the name of an FXF binary to launch" data.8 10 data.str "it as a new task; the shell will suspend" data.8 10