diff --git a/int21.asm b/int21.asm index f0dba91..1b509c5 100644 --- a/int21.asm +++ b/int21.asm @@ -295,7 +295,7 @@ get_string_done: iret nos_version: popf - mov cx, "0B" + mov cx, "B3" iret kernel_panic: ; Turn on all keylights and Halt diff --git a/kernel.asm b/kernel.asm index 87333ae..0646152 100644 --- a/kernel.asm +++ b/kernel.asm @@ -26,7 +26,7 @@ boot_drv db 00h ; For saving tho boot drive old_ss dw 0000h ; For saving our old SS locations. old_sp dw 0000h ; Same for old SP. - version db "NOS Beta 2 -- built from Git repository", 0Dh, 0Ah, 00h ; Version string + version db "NOS Beta 3 -- built from Git repository", 0Dh, 0Ah, 00h ; Version string bootmsg db "Booting up...", 0Dh, 0Ah, 00h ; Boot message drv_fname db "DRVS", 00h ; Driver list file name blank_line db 0Dh, 0Ah, 00h ; A blank line on the screen