浏览代码

clear screen on boot

greatbridf 4 年之前
父节点
当前提交
959bc32960
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/boot.s

+ 5 - 0
src/boot.s

@@ -57,6 +57,11 @@ loader_start:
     movw %cs, %ax
     movw %cs, %ax
     movw %ax, %ds
     movw %ax, %ds
 
 
+_clear_screen:
+    mov $0x00, %ah
+    mov $0x03, %al
+    int $0x10
+
 # get memory size info and storage it
 # get memory size info and storage it
 _get_memory_size:
 _get_memory_size:
     xorw %cx, %cx
     xorw %cx, %cx