diff options
Diffstat (limited to 'src/cpu/ppc/ppc970/ppc970excp.S')
-rwxr-xr-x | src/cpu/ppc/ppc970/ppc970excp.S | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cpu/ppc/ppc970/ppc970excp.S b/src/cpu/ppc/ppc970/ppc970excp.S new file mode 100755 index 0000000000..f14eaa22c2 --- /dev/null +++ b/src/cpu/ppc/ppc970/ppc970excp.S @@ -0,0 +1,11 @@ +
+#include <ppc970.h>
+
+/*----------------------------------------------------------------------------+
+| Init_excp. The external interrupt vector should never be called before
+| io_init() is called so it can be removed from this file.
++----------------------------------------------------------------------------*/
+ function_prolog(init_excp)
+ .space 0x100
+ b .init_core /* 0100 */
+ function_epilog(init_excp)
|