freebsd-dev/sys/powerpc/include/trap.h
Rafal Jaworowski ffb5669540 Rework and extend PowerPC headers definitons towards Book-E/e500 CPUs support.
Approved by:	cognet (mentor)
Obtained from:	Juniper, Semihalf
MFp4:		e500
2008-03-03 13:20:52 +00:00

13 lines
198 B
C

/* $FreeBSD$ */
#if defined(AIM)
#include <machine/trap_aim.h>
#elif defined(E500)
#include <machine/trap_booke.h>
#endif
#ifndef LOCORE
struct trapframe;
void trap(struct trapframe *);
#endif