cpu.h revision 1.5
1/* $NetBSD: cpu.h,v 1.5 2000/04/15 22:05:52 soda Exp $ */ 2 3#ifndef __HPCMIPS_CPU_H 4#define __HPCMIPS_CPU_H 5 6/* 7 * VR4100: Internal timer causes hard interrupt 5. 8 */ 9#define MIPS_INT_MASK_CLOCK MIPS_INT_MASK_5 10 11#include <mips/cpu.h> 12#include <mips/cpuregs.h> /* XXX */ 13 14#ifdef ENABLE_MIPS_TX3900 15#define INT_MASK_REAL_DEV MIPS_HARD_INT_MASK 16#else 17#define INT_MASK_REAL_DEV MIPS3_HARD_INT_MASK /* XXX */ 18#endif 19 20#endif __HPCMIPS_CPU_H 21