Change a MIPS3 check to a MIPS3_PLUS check.

XXX: I'm not 100% sure of the intent of this code - it would seem that
 it needs a run-time check of CPU ISA to be completely correct...
This commit is contained in:
simonb 2002-03-05 15:48:31 +00:00
parent d62813603c
commit 9ed4fd257f

View File

@ -1,4 +1,4 @@
/* $NetBSD: locore.S,v 1.131 2002/01/30 16:09:29 uch Exp $ */
/* $NetBSD: locore.S,v 1.132 2002/03/05 15:48:31 simonb Exp $ */
/*
* Copyright (c) 1992, 1993
@ -65,7 +65,7 @@
#include "opt_lockdebug.h"
#include "fs_coda.h"
#include <machine/cdefs.h>
#include <sys/cdefs.h>
#include <sys/errno.h>
#include <sys/syscall.h>
@ -92,7 +92,7 @@
.globl _C_LABEL(kernel_text) # libkvm refers this
start:
_C_LABEL(kernel_text):
#if defined(MIPS3) & !defined(MIPS1)
#if defined(MIPS3_PLUS) && !defined(MIPS1)
/* keep firmware exception handler until we hook. */
mfc0 v0, MIPS_COP_0_STATUS
and v0, MIPS3_SR_DIAG_BEV