diff --git a/CLI/CLI.nasm b/CLI/CLI.nasm index 3299582..abbff4a 100644 --- a/CLI/CLI.nasm +++ b/CLI/CLI.nasm @@ -158,9 +158,9 @@ CLI_EXECUTE: ret .tmp dw 0 - .Num_Commands dw 11 - .Command_Name_List dw .CMD1, .CMD2, .CMD3, .CMD4, .CMD5, .CMD6, .CMD7, .CMD8, .CMD9, .CMDa, .CMDb - .Command_Function_Pointers dw dumpmem_hardcoded_args, keyprint, svim, lsfs_list_files_command, lsfs_create_file, lsfs_format_disk, lsfs_get_fs_info, os_clear_screen, print_help_message, Go32Bit, xex + .Num_Commands dw 12 + .Command_Name_List dw .CMD1, .CMD2, .CMD3, .CMD4, .CMD5, .CMD6, .CMD7, .CMD8, .CMD9, .CMDa, .CMDb, .CMDc + .Command_Function_Pointers dw dumpmem_hardcoded_args, keyprint, svim, lsfs_list_files_command, lsfs_create_file, lsfs_format_disk, lsfs_get_fs_info, os_clear_screen, print_help_message, Go32Bit, xex, lsfs_create_file .CMD1 db 'dumpmem', 0 .CMD2 db 'keyprint', 0 .CMD3 db 'svim', 0 @@ -172,5 +172,6 @@ CLI_EXECUTE: .CMD9 db 'help', 0 .CMDa db 'go32', 0 .CMDb db 'xex', 0 + .CMDc db 'cf', 0 ; short for createfile diff --git a/kernel.nasm b/kernel.nasm index e18f1c6..f3a51c9 100644 --- a/kernel.nasm +++ b/kernel.nasm @@ -287,7 +287,7 @@ global_vars: ; this is the bios ID data: - welcome db "###############################################################################", 13, 10, "# Welcome to SingOS - VERSION 0.0.6.0 #", 13, 10, "# #", 13, 10, "###############################################################################", 13, 10, 'Press ESC to halt.', 13, 10, 13, 10, 0 + welcome db "###############################################################################", 13, 10, "# Welcome to SingOS - VERSION 0.0.6.1 #", 13, 10, "# #", 13, 10, "###############################################################################", 13, 10, 'Press ESC to halt.', 13, 10, 13, 10, 0 exit_message db 13, 10, 'Goodbye from SingOS',13,10,'The system has halted.', 0 command_line db 13, 10, 'groot@SingOS $ ', 0 number_one_zstring db '71', 0