diff options
author | flipk <flipk@cvs.openbsd.org> | 1997-07-29 16:48:41 +0000 |
---|---|---|
committer | flipk <flipk@cvs.openbsd.org> | 1997-07-29 16:48:41 +0000 |
commit | 4604fce4f4273095be62a838b2513c6dfdbdfe30 (patch) | |
tree | 185b085396f2fcf0c0ce9e1709650b8a7673a0c5 /sys/arch/i386/stand/biosboot | |
parent | c644a61a2a645f25562d26c9c742807fc84af1fb (diff) |
Test before you Commit!!
1) missing include files in biosboot.S and gidt.S
2) macros in apm_init.S, biosdisk.S, gidt.S wrong case
Diffstat (limited to 'sys/arch/i386/stand/biosboot')
-rw-r--r-- | sys/arch/i386/stand/biosboot/biosboot.S | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/biosboot/biosboot.S b/sys/arch/i386/stand/biosboot/biosboot.S index dded626b95c..3737def369b 100644 --- a/sys/arch/i386/stand/biosboot/biosboot.S +++ b/sys/arch/i386/stand/biosboot/biosboot.S @@ -1,8 +1,13 @@ -/* $OpenBSD: biosboot.S,v 1.10 1997/07/28 23:02:17 mickey Exp $ */ +/* $OpenBSD: biosboot.S,v 1.11 1997/07/29 16:48:38 flipk Exp $ */ .file "bootbios.S" #include <machine/asm.h> +#include <machine/param.h> +#include <machine/specialreg.h> +#define _LOCORE +#include <machine/segments.h> +#undef _LOCORE #include <assym.h> #define addr32 .byte 0x67 |