diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-24 02:59:51 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-24 02:59:51 +0100 |
| commit | 21e1c5e540da32b89fc4812caad494f0e25c17aa (patch) | |
| tree | 52c92a85d5f9a043fee93c898cd4840cb774622c /boot2 | |
| parent | 48abbcee80a5066159b8ffee5602728dd45b94e4 (diff) | |
hide text mode cursor
Diffstat (limited to 'boot2')
| -rw-r--r-- | boot2/stage2.asm | 9 |
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) |
