xref: /netbsd/sys/arch/ews4800mips/include/locore.h (revision 6550d01e)
1 /* $NetBSD: locore.h,v 1.1 2005/12/29 15:20:08 tsutsui Exp $ */
2 
3 #ifndef _EWS4800MIPS_LOCORE_H_
4 #define _EWS4800MIPS_LOCORE_H_
5 
6 #include <mips/locore.h>
7 
8 #ifdef _KERNEL
9 #ifndef _LOCORE
10 void ews4800mips_nmi_vec(void);
11 
12 void rom_putc(int, int, int);
13 int  rom_getc(void);
14 void rom_ipl(void);
15 void rom_poweroff(void);
16 #endif /* !_LOCORE */
17 #endif /* _KERNEL */
18 
19 #endif /* !_EWS4800MIPS_LOCORE_H_ */
20 
21