summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/powerpc/rtems/score/cpu.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-18 20:54:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-18 20:54:19 +0000
commit4a0d87ee09cb3c1d3cb98d2907a046a463777c3e (patch)
treee709cfe0c0073b139395d60fc3fe15d57c5204f5 /c/src/exec/score/cpu/powerpc/rtems/score/cpu.h
parent2002-04-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4a0d87ee09cb3c1d3cb98d2907a046a463777c3e.tar.bz2
2002-04-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* asm.h: Include cpuopts.h instead of targopts.h. * rtems/new-exceptions/cpu.h: Relocated from libbsp/powerpc/support/new_exception_processing/rtems/score/cpu.h * rtems/old-exceptions/cpu.h: Relocated from c/src/lib/libbsp/powerpc/support/old_exception_processing/rtems/score/cpu.h * rtems/powerpc/registers.h: Relocated and renamed from libcpu/powerpc/shared/include/cpu.h. * rtems/score/cpu.h: New. * Makefile.am: Reflect changes above.
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/cpu/powerpc/rtems/score/cpu.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/c/src/exec/score/cpu/powerpc/rtems/score/cpu.h b/c/src/exec/score/cpu/powerpc/rtems/score/cpu.h
new file mode 100644
index 0000000000..7e181da7f8
--- /dev/null
+++ b/c/src/exec/score/cpu/powerpc/rtems/score/cpu.h
@@ -0,0 +1,19 @@
+/*
+ * $Id$
+ */
+
+#ifndef _rtems_score_cpu_h
+#define _rtems_score_cpu_h
+
+#include <rtems/score/ppc.h> /* pick up machine definitions */
+#ifndef ASM
+#include <rtems/score/types.h>
+#endif
+
+#ifdef _OLD_EXCEPTIONS
+#include <rtems/old-exceptions/cpu.h>
+#else
+#include <rtems/new-exceptions/cpu.h>
+#endif
+
+#endif