source: rtems/cpukit/score/cpu/arm/rtems/score/armv4.h @ c04ac2ca

4.115
Last change on this file since c04ac2ca was c04ac2ca, checked in by Sebastian Huber <sebastian.huber@…>, on 01/04/13 at 12:16:35

arm: Move type definition and prototypes

  • Property mode set to 100644
File size: 993 bytes
Line 
1/*
2 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.com/license/LICENSE.
13 */
14
15#ifndef RTEMS_SCORE_ARMV4_H
16#define RTEMS_SCORE_ARMV4_H
17
18#include <rtems/score/cpu.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
24#ifdef ARM_MULTILIB_ARCH_V4
25
26void bsp_interrupt_dispatch( void );
27
28void _ARMV4_Exception_interrupt( void );
29
30typedef void arm_exc_abort_handler( arm_cpu_context *context );
31
32void arm_exc_data_abort_set_handler( arm_exc_abort_handler handler );
33
34void arm_exc_data_abort( void );
35
36void arm_exc_prefetch_abort_set_handler( arm_exc_abort_handler handler );
37
38void arm_exc_prefetch_abort( void );
39
40#endif /* ARM_MULTILIB_ARCH_V4 */
41
42#ifdef __cplusplus
43}
44#endif /* __cplusplus */
45
46#endif /* RTEMS_SCORE_ARMV4_H */
Note: See TracBrowser for help on using the repository browser.