summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/rtems/score/armv4.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-01-04 13:05:28 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-01-07 15:07:39 +0100
commit9b2e714322d80583c4b1d482503457db733f00c5 (patch)
tree4868c9ca21d6f2a558a677a6b0a591d997c70f76 /cpukit/score/cpu/arm/rtems/score/armv4.h
parentarm: Delete unused arm_exc_undefined() (diff)
downloadrtems-9b2e714322d80583c4b1d482503457db733f00c5.tar.bz2
arm: Move prototypes to new file
Move bsp_interrupt_dispatch() and arm_exc_interrupt() prototypes to new file <rtems/score/armv4.h> since they have nothing to do with the CPU port.
Diffstat (limited to 'cpukit/score/cpu/arm/rtems/score/armv4.h')
-rw-r--r--cpukit/score/cpu/arm/rtems/score/armv4.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/cpukit/score/cpu/arm/rtems/score/armv4.h b/cpukit/score/cpu/arm/rtems/score/armv4.h
new file mode 100644
index 0000000000..9204c734f8
--- /dev/null
+++ b/cpukit/score/cpu/arm/rtems/score/armv4.h
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2013 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Dornierstr. 4
+ * 82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#ifndef RTEMS_SCORE_ARMV4_H
+#define RTEMS_SCORE_ARMV4_H
+
+#include <rtems/score/cpu.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#ifdef ARM_MULTILIB_ARCH_V4
+
+void bsp_interrupt_dispatch( void );
+
+void arm_exc_interrupt( void );
+
+#endif /* ARM_MULTILIB_ARCH_V4 */
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* RTEMS_SCORE_ARMV4_H */