aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-11-07 00:18:25 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-11-07 00:18:25 +0000
commit19a41f3ab7f1ce5beaa5792d57d60011cf7a6993 (patch)
tree224fc26c8ff9dced0d5050cb79cb72a31448a016
parent5e90d58311eda8e28637bd20a6379498be2e97c4 (diff)
Notes
-rw-r--r--usr.sbin/mkdosfs/bootcode.asm4
-rw-r--r--usr.sbin/mkdosfs/bootcode.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mkdosfs/bootcode.asm b/usr.sbin/mkdosfs/bootcode.asm
index d35fb174b59c..7e5d42902cd9 100644
--- a/usr.sbin/mkdosfs/bootcode.asm
+++ b/usr.sbin/mkdosfs/bootcode.asm
@@ -11,7 +11,7 @@
;;; (This is written in as86 syntax. as86 is part of Bruce Evans'
;;; bcc package.)
;;;
-;;; $Id: bootcode.asm,v 1.3 1997/02/22 16:06:36 peter Exp $
+;;; $Id: bootcode.asm,v 1.4 1997/11/07 00:12:54 joerg Exp $
;;;
;;; This code must be linked to address 0x7c00 in order to function
;;; correctly (the BIOS boot address).
@@ -95,7 +95,7 @@ message:
;; Adjust the value below after changing the length of
;; the code above!
- .space 0x1fe-0x161 ; pad to 512 bytes
+ .space 0x1fe-0x15e ; pad to 512 bytes
.byte 0x55, 0xaa ; yes, we are bootable (cheating :)
end
diff --git a/usr.sbin/mkdosfs/bootcode.h b/usr.sbin/mkdosfs/bootcode.h
index 27ef368ca81c..70cd4b85f198 100644
--- a/usr.sbin/mkdosfs/bootcode.h
+++ b/usr.sbin/mkdosfs/bootcode.h
@@ -49,6 +49,6 @@ static unsigned char bootcode[512] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-0x00, 0x00, 0x00, 0x55, 0xaa, 0x00, 0x00, 0x00, };
+0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xaa, };
#endif /* BOOTCODE_H */