diff options
Diffstat (limited to 'sys/arch/i386/stand')
-rw-r--r-- | sys/arch/i386/stand/biosboot/biosboot.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/biosboot/biosboot.S b/sys/arch/i386/stand/biosboot/biosboot.S index d417da014f3..9beb090a717 100644 --- a/sys/arch/i386/stand/biosboot/biosboot.S +++ b/sys/arch/i386/stand/biosboot/biosboot.S @@ -1,4 +1,4 @@ -/* $OpenBSD: biosboot.S,v 1.3 1997/03/31 23:06:19 mickey Exp $ */ +/* $OpenBSD: biosboot.S,v 1.4 1997/04/11 19:09:59 weingart Exp $ */ .file "bootbios.S" @@ -11,11 +11,15 @@ #define addr32 .byte 0x67 #define data32 .byte 0x66 +/* Better use 32, 48 does not seem to compile */ +#define BLKCNT 32 +#if 0 #ifdef DEBUG #define BLKCNT 32 #else #define BLKCNT 48 #endif +#endif #define BOOTSEG 0x07c0 /* boot loaded here */ #define BOOTSTACK 0xfffc /* stack starts here */ |