summaryrefslogtreecommitdiff
path: root/src/boot.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot.asm')
-rw-r--r--src/boot.asm6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/boot.asm b/src/boot.asm
index 9620fcc..3f9c127 100644
--- a/src/boot.asm
+++ b/src/boot.asm
@@ -44,6 +44,10 @@
; after the boot sector)
mov dl, [BOOT_DRIVE]
call read_from_disk
+ call print_newline
+
+; turn off disk motor
+ call kill_motor
; jump over variables and subroutines of stage 1 and execute stage 2
jmp stage2
@@ -63,7 +67,7 @@ MESSAGE_BOOT_DRIVE:
db "Booting from drive ", 0
MESSAGE_LOADING_STAGE_2:
- db "Loading stage 2 boot loader", 13, 10, 0
+ db "Loading stage 2 boot loader and kernel", 0
BOOT_DRIVE:
db 0