diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-06 19:42:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-06 19:42:46 +0000 |
commit | b5cc8361e0c5ce2b972872699aa729216f1bb2ea (patch) | |
tree | 935ee13a8a77a5ff2bd5dcc37ba39bcf3fb4cfab /sys/arch/hp300/stand/uboot/srt0.S | |
parent | 4d0f54a69a32d2f1f34f07dbc2b3ddd46df5e019 (diff) |
Idnetify/support hp385 (33Mhz 68040)
Diffstat (limited to 'sys/arch/hp300/stand/uboot/srt0.S')
-rw-r--r-- | sys/arch/hp300/stand/uboot/srt0.S | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/hp300/stand/uboot/srt0.S b/sys/arch/hp300/stand/uboot/srt0.S index 77e0b752c26..3323ac40129 100644 --- a/sys/arch/hp300/stand/uboot/srt0.S +++ b/sys/arch/hp300/stand/uboot/srt0.S @@ -1,4 +1,4 @@ -/* $OpenBSD: srt0.S,v 1.1 1997/07/14 08:14:58 downsj Exp $ */ +/* $OpenBSD: srt0.S,v 1.2 1997/11/06 19:42:45 millert Exp $ */ /* $NetBSD: srt0.S,v 1.4 1997/05/12 07:56:00 thorpej Exp $ */ /* @@ -179,8 +179,10 @@ not68030: jeq isa425 cmpb #MMUID_433_T,d0 | or a 433t? jeq isa433 - cmpb #MMUID_433_S,d0 | last chance... + cmpb #MMUID_433_S,d0 | maybe a 433s? jeq isa433 + cmpb #MMUID_385,d0 | last chance... + jeq isa385 movl #HP_380,a0@ | guess we're a 380 jra ihpibcheck isa425: @@ -189,6 +191,9 @@ isa425: isa433: movl #HP_433,a0@ jra ihpibcheck +isa385: + movl #HP_385,a0@ + jra ihpibcheck /* * End 68040 section |