summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>1998-04-14 06:28:08 +0000
committerhpa <hpa>1998-04-14 06:28:08 +0000
commit9db0562a9254e320de6742a7840507f87e0ec8d5 (patch)
treeed4267b779fe32a8cafe29a6916f06d462f1f570
parent310d0ccb3a9f5592eccdd819b788de83b1f06a17 (diff)
downloadsyslinux-9db0562a9254e320de6742a7840507f87e0ec8d5.tar.gz
Cleanup
-rw-r--r--syslinux.asm9
1 files changed, 5 insertions, 4 deletions
diff --git a/syslinux.asm b/syslinux.asm
index 01e469c2..6cb3e0b6 100644
--- a/syslinux.asm
+++ b/syslinux.asm
@@ -87,6 +87,11 @@ got_colon: jcxz got_cmdline
;
bad_usage: mov dx,msg_unfair
jmp die
+
+ section .data
+msg_unfair: db 'Usage: syslinux [-s] <drive>:', 0Dh, 0Ah, '$'
+
+ section .text
;
; Scan for options after a - sign. The only recognized option right now
; is -s.
@@ -106,10 +111,6 @@ scan_option: jcxz bad_usage
pop si
jmp short scan_option
- section .data
-msg_unfair: db 'Usage: syslinux [-s] <drive>:', 0Dh, 0Ah, '$'
-
- section .text
;
; Parsed the command line OK. Check that the drive parameters are acceptable
;