Browse Source

updates

master v0.0.6
Jørn Guldberg 5 years ago
parent
commit
c41a7d7378
2 changed files with 5 additions and 4 deletions
  1. +4
    -3
      CLI/CLI.nasm
  2. +1
    -1
      kernel.nasm

+ 4
- 3
CLI/CLI.nasm View File

@ -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

+ 1
- 1
kernel.nasm View File

@ -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

Loading…
Cancel
Save