summaryrefslogtreecommitdiff
path: root/boot2
diff options
context:
space:
mode:
Diffstat (limited to 'boot2')
-rw-r--r--boot2/stage2.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/boot2/stage2.asm b/boot2/stage2.asm
index 3a469e8..d4abbca 100644
--- a/boot2/stage2.asm
+++ b/boot2/stage2.asm
@@ -110,6 +110,13 @@ boot_16:
mov [BOOT_DRIVE],dl
+
+ ; hide text-mode cursor
+ mov ah,0x01
+ mov cx,0x2607
+ int 0x10
+
+
;pr info
mov bx, STR_VERSION
call print_string
@@ -144,6 +151,8 @@ kernel_load:
call disk_load_16
+
+
; init vesa on last iteration!
mov ax,[KERNEL_CHUNK]
cmp ax,(CHUNKS_TO_LOAD-1)