summaryrefslogtreecommitdiff
path: root/bootblocks/skip.s
diff options
context:
space:
mode:
Diffstat (limited to 'bootblocks/skip.s')
-rw-r--r--bootblocks/skip.s21
1 files changed, 11 insertions, 10 deletions
diff --git a/bootblocks/skip.s b/bootblocks/skip.s
index 3e55cd9..0c1184d 100644
--- a/bootblocks/skip.s
+++ b/bootblocks/skip.s
@@ -52,16 +52,6 @@ error:
call prtmsg
jmp hcode
- if BOOTDISK = 0x80
-mesg: .asciz "Bypassing floppy boot\r\n"
- else
-mesg: .asciz "Booting drive two\r\n"
- endif
-
-mesg2: .asciz "Disk error\r\n"
-mesg3: .asciz "Retrying\r\n"
-mesg4: .asciz "Press a key:"
-
prtmsg:
lodsb
cmp al,#0
@@ -82,3 +72,14 @@ reboot:
int $19 ! This should be OK as we haven't touched anything.
jmpi $0,$FFFF ! Wam! Try or die!
+mesg2: .asciz "Disk error\r\n"
+mesg3: .asciz "Retrying\r\n"
+mesg4: .asciz "Press a key:"
+
+export mesg
+ if BOOTDISK = 0x80
+mesg: .asciz "Bypassing floppy boot\r\n"
+ else
+mesg: .asciz "Booting drive two\r\n"
+ endif
+