diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-17 10:28:41 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-17 10:28:41 +0000 |
commit | 3cd6a597621fe7be36c2e14ee8934dd6d0dd9059 (patch) | |
tree | 1389cdedca5136cf9c0fbdfa3d248052d09e9e75 /sys/arch/hp300/include | |
parent | f20f2bf338e2033e71d975e76b9636fdfe06de2b (diff) |
Better machine type identification from Mike Smith
(<miff@spam.frisbee.net.au>).
Diffstat (limited to 'sys/arch/hp300/include')
-rw-r--r-- | sys/arch/hp300/include/cpu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hp300/include/cpu.h b/sys/arch/hp300/include/cpu.h index d8217c91a33..51db1f37cbd 100644 --- a/sys/arch/hp300/include/cpu.h +++ b/sys/arch/hp300/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.6 1997/04/16 11:56:34 downsj Exp $ */ +/* $OpenBSD: cpu.h,v 1.7 1997/04/17 10:28:40 downsj Exp $ */ /* $NetBSD: cpu.h,v 1.24 1997/04/14 02:28:50 thorpej Exp $ */ /* @@ -192,10 +192,12 @@ int want_resched; /* resched() was called */ #define HP_340 5 /* 16Mhz 68030 */ #define HP_375 6 /* 50Mhz 68030+32K external cache */ #define HP_380 7 /* 25Mhz 68040 */ -#define HP_433 8 /* 33Mhz 68040 */ +#define HP_425 8 /* 25/33Mhz 68040 */ +#define HP_433 9 /* 33Mhz 68040 (maybe also 25MHz?) */ #ifdef _KERNEL extern int machineid; /* CPU model */ +extern int mmuid; /* MMU model */ extern int cpuspeed; /* CPU speed, in MHz */ extern char *intiobase, *intiolimit; |