diff options
author | kato <kato@FreeBSD.org> | 1998-03-17 09:11:03 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-03-17 09:11:03 +0000 |
commit | 890e12c6b0f2fc5580e638fb7a4a27f3908f6139 (patch) | |
tree | 5ecdaac783c38099021d214278ed6ced399a8840 /sys/pc98 | |
parent | 0b339177194e5d5af13b114350ca29f28895257b (diff) | |
download | FreeBSD-src-890e12c6b0f2fc5580e638fb7a4a27f3908f6139.zip FreeBSD-src-890e12c6b0f2fc5580e638fb7a4a27f3908f6139.tar.gz |
Make EPSON_BOUNCEDMA a new-style option.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/conf/options.pc98 | 3 | ||||
-rw-r--r-- | sys/pc98/pc98/pc98.c | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/pc98/conf/options.pc98 b/sys/pc98/conf/options.pc98 index b4c78f4f..9af141e 100644 --- a/sys/pc98/conf/options.pc98 +++ b/sys/pc98/conf/options.pc98 @@ -1,4 +1,4 @@ -# $Id: options.pc98,v 1.56 1998/03/09 10:16:56 kato Exp $ +# $Id: options.pc98,v 1.57 1998/03/10 12:48:57 kato Exp $ BOUNCEPAGES opt_bounce.h DISABLE_PSE USER_LDT @@ -128,5 +128,6 @@ FPU_ERROR_BROKEN opt_npx.h # PC98 options PC98 opt_global.h +EPSON_BOUNCEDMA opt_pc98.h EPSON_MEMWIN opt_pc98.h COMPAT_ATDISK opt_pc98.h diff --git a/sys/pc98/pc98/pc98.c b/sys/pc98/pc98/pc98.c index 811ea37..c720039 100644 --- a/sys/pc98/pc98/pc98.c +++ b/sys/pc98/pc98/pc98.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: pc98.c,v 1.47 1998/02/05 10:06:42 kato Exp $ + * $Id: pc98.c,v 1.48 1998/02/06 12:14:03 eivind Exp $ */ /* @@ -51,6 +51,9 @@ * modified for PC9801 by A.Kojima F.Ukai M.Ishii * Kyoto University Microcomputer Club (KMC) */ +#ifdef PC98 +#include "opt_pc98.h" +#endif #include <sys/param.h> #include <sys/systm.h> |