xref: /netbsd-src/sys/arch/pmax/include/cpu.h (revision bada23909e740596d0a3785a73bd3583a9807fb8)
1 /*	$NetBSD: cpu.h,v 1.19 1999/01/16 02:36:01 nisimura Exp $	*/
2 
3 #ifndef __PMAX_CPU_H
4 #define __PMAX_CPU_H
5 
6 /*
7  * pmax uses standard mips1 convention, wiring FPU to hard interupt 5.
8  */
9 #include <mips/cpu.h>
10 #include <mips/cpuregs.h>
11 
12 #define MIPS_INT_MASK_FPU	MIPS_INT_MASK_5
13 
14 #define	INT_MASK_REAL_DEV	(MIPS_HARD_INT_MASK &~ MIPS_INT_MASK_5)
15 #define	INT_MASK_FPU_DEAL	MIPS_INT_MASK_5
16 
17 #endif __PMAX_CPU_H
18