diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-05-21 23:05:45 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2007-05-21 23:05:45 +0000 |
commit | 446380735dcf150b3c72600161ae8f689d2689e9 (patch) | |
tree | 0b322ef9eee7aa8f6af25e7a8cb98934edd4e4a1 /sys | |
parent | ffe98576b4ce416902b439d5fea6723363e29f8d (diff) |
Add support for 8700/pcxw2 cpu.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/hppa/machdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 422997dd69f..875387e4ab1 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.154 2007/05/21 23:00:19 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.155 2007/05/21 23:05:44 kettenis Exp $ */ /* * Copyright (c) 1999-2003 Michael Shalayeff @@ -269,6 +269,10 @@ const struct hppa_cpu_typed { { "PCXW", hpcxw, HPPA_CPU_PCXW, HPPA_FTRS_W32B, 4, desidhash_u, ibtlb_u, NULL, pbtlb_u }, #endif +#ifdef HP8700_CPU + { "PCXW2", hpcxw, HPPA_CPU_PCXW2, HPPA_FTRS_W32B, + 4, desidhash_u, ibtlb_u, NULL, pbtlb_u }, +#endif { "", 0 } }; |