xref: /freebsd-src/sys/arm/include/machdep.h (revision 7cc9e6ddbb1a6cd38b2f44d4dd9dfc890d2fc9d0)
1 /* $NetBSD: machdep.h,v 1.7 2002/02/21 02:52:21 thorpej Exp $ */
2 /* $FreeBSD$ */
3 
4 #ifndef _MACHDEP_BOOT_MACHDEP_H_
5 #define _MACHDEP_BOOT_MACHDEP_H_
6 
7 /* misc prototypes used by the many arm machdeps */
8 void halt (void);
9 void data_abort_handler (trapframe_t *);
10 void prefetch_abort_handler (trapframe_t *);
11 void undefinedinstruction_bounce (trapframe_t *);
12 
13 #endif /* !_MACHINE_MACHDEP_H_ */
14