From 652c3b70c20e790d76f85057aa6b1b7c5c1abc9b Mon Sep 17 00:00:00 2001 From: Ry Date: Tue, 31 Jan 2023 22:03:40 -0800 Subject: [PATCH] sh: Make `help` have a little bit of color --- applications/sh/commands/help.asm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/applications/sh/commands/help.asm b/applications/sh/commands/help.asm index 223b1dd..5c118c3 100644 --- a/applications/sh/commands/help.asm +++ b/applications/sh/commands/help.asm @@ -9,7 +9,9 @@ shell_help_command: ret shell_help_text: + data.8 0xF2 data.8 0x20 data.8 1 ; set the color to green data.str "fox32os shell" data.8 10 + data.8 0xF2 data.8 0x70 data.8 1 ; set the color to white data.8 10 data.str "(in descriptions, $n is argument n)" data.8 10 data.str "command | description" data.8 10