浏览代码

Version 0.0.5

jorn_dev v0.0.5
Jørn Guldberg 5 年前
父节点
当前提交
d2706a4530
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      bootloader.nasm
  2. +1
    -1
      kernel.nasm

+ 1
- 1
bootloader.nasm 查看文件

@ -31,7 +31,7 @@ start:
mov si, enter_debug_mode
call print
call printCRLF
%IF 0
%IF 1
; here goes wait call, for the user to enter debug mode.
; Wating for 2 seconds:
mov ah, 0x86 ; code for waiting interupt call

+ 1
- 1
kernel.nasm 查看文件

@ -287,7 +287,7 @@ global_vars:
; this is the bios ID
data:
welcome db "###############################################################################", 13, 10, "# Welcome to SingOS VERSION 0.0.4.5-exp #", 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.5.0 #", 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

正在加载...
取消
保存