diff options
author | nsayer <nsayer@FreeBSD.org> | 1999-03-30 21:22:39 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 1999-03-30 21:22:39 +0000 |
commit | 1c6633520fae3198357af13b0cbb8dff14814ca2 (patch) | |
tree | f1e19a563bc00316a145c079f35d18ab9924d7e1 | |
parent | acd0aa475462972b9d158e7c985e23556bb08fd4 (diff) | |
download | FreeBSD-src-1c6633520fae3198357af13b0cbb8dff14814ca2.zip FreeBSD-src-1c6633520fae3198357af13b0cbb8dff14814ca2.tar.gz |
SX ISA cards are only 32k wide in 8 bit mode (which is the only
mode supported by the manufacturer).
PR: 6255
Submitted by: nsayer
-rw-r--r-- | sys/dev/si/sireg.h | 4 | ||||
-rw-r--r-- | sys/i386/isa/sireg.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/si/sireg.h b/sys/dev/si/sireg.h index aea0584..4697a7f 100644 --- a/sys/dev/si/sireg.h +++ b/sys/dev/si/sireg.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: sireg.h,v 1.5 1998/02/15 14:42:33 peter Exp $ + * $Id: sireg.h,v 1.6 1998/03/23 16:27:40 peter Exp $ */ /* @@ -86,7 +86,7 @@ * RAMSIZE is value to use when probing */ #define SIJETPCI_MEMSIZE 0x10000 -#define SIJETISA_MEMSIZE 0x10000 +#define SIJETISA_MEMSIZE 0x8000 #define SIJET_RAMSIZE 0x7000 #define SIHOST_MEMSIZE 0x10000 #define SIHOST_RAMSIZE 0x8000 diff --git a/sys/i386/isa/sireg.h b/sys/i386/isa/sireg.h index aea0584..4697a7f 100644 --- a/sys/i386/isa/sireg.h +++ b/sys/i386/isa/sireg.h @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: sireg.h,v 1.5 1998/02/15 14:42:33 peter Exp $ + * $Id: sireg.h,v 1.6 1998/03/23 16:27:40 peter Exp $ */ /* @@ -86,7 +86,7 @@ * RAMSIZE is value to use when probing */ #define SIJETPCI_MEMSIZE 0x10000 -#define SIJETISA_MEMSIZE 0x10000 +#define SIJETISA_MEMSIZE 0x8000 #define SIJET_RAMSIZE 0x7000 #define SIHOST_MEMSIZE 0x10000 #define SIHOST_RAMSIZE 0x8000 |