From 21e1c5e540da32b89fc4812caad494f0e25c17aa Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Mon, 24 Nov 2014 02:59:51 +0100 Subject: hide text mode cursor --- boot2/stage2.asm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'boot2') 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) -- cgit v1.2.3