Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Change version numbers
Browse files Browse the repository at this point in the history
ARGH! I keep forgetting to change the version numbers in the kernel and
the API. Fixed and retagged.
  • Loading branch information
devfonks committed Jan 18, 2017
1 parent 0a978a0 commit 1a0c18c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/int21.asm
Expand Up @@ -795,7 +795,7 @@ get_string_done:
iret
nos_version:
popf
mov cx, "B3"
mov cx, "B4"
mov al, "0"
iret
kernel_panic:
Expand Down
2 changes: 1 addition & 1 deletion src/kernel.asm
Expand Up @@ -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 3 -- built from Git repository", 0Dh, 0Ah, 00h ; Version string
version db "NOS Beta 4 -- 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
Expand Down

0 comments on commit 1a0c18c

Please sign in to comment.