1 /* $NetBSD: cpu.h,v 1.20 2000/01/09 15:34:42 ad 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