From a3432887e6a9d2772e592936d5cd7f90d6fc1e88 Mon Sep 17 00:00:00 2001 From: heckeralt Date: Sat, 21 Sep 2024 14:40:20 -0400 Subject: [PATCH] Update boot.asm --- boot.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.asm b/boot.asm index ac972c5..6b4c442 100644 --- a/boot.asm +++ b/boot.asm @@ -63,7 +63,7 @@ print_string: ret ; Return from function ; Data section for messages -welcome_message db 'Welcome to the Simple Terminal!', 0 +welcome_message db 'Welcome to the HeckerOS!\n', 0 prompt_message db 'Enter command (h for help, q to quit, f for heckerfetch): ', 0 help_message db 'Available commands: h (help), q (quit)', 0 unknown_command_message db 'Unknown command! Try again.', 0