6fc729af63
It only supports sa1110 (on simics) right now, but xscale support should come soon. Some of the initial work has been provided by : Stephane Potvin <sepotvin at videotron.ca> Most of this comes from NetBSD.
14 lines
390 B
C
14 lines
390 B
C
/* $NetBSD: machdep.h,v 1.7 2002/02/21 02:52:21 thorpej Exp $ */
|
|
/* $FreeBSD$ */
|
|
|
|
#ifndef _MACHDEP_BOOT_MACHDEP_H_
|
|
#define _MACHDEP_BOOT_MACHDEP_H_
|
|
|
|
/* misc prototypes used by the many arm machdeps */
|
|
void halt (void);
|
|
void data_abort_handler (trapframe_t *);
|
|
void prefetch_abort_handler (trapframe_t *);
|
|
void undefinedinstruction_bounce (trapframe_t *);
|
|
|
|
#endif /* !_MACHINE_MACHDEP_H_ */
|