source: rtems/cpukit/score/cpu/m32c/rtems/score/types.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 975 bytes
Line 
1/**
2 * @file
3 *
4 * @brief M32C CPU Type Definitions
5 *
6 * This include file contains type definitions pertaining to the Intel
7 * m32c processor family.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2006.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#ifndef _RTEMS_SCORE_TYPES_H
20#define _RTEMS_SCORE_TYPES_H
21
22#include <rtems/score/basedefs.h>
23
24#ifndef ASM
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
34/** This defines the type for a priority bit map entry. */
35typedef uint16_t Priority_bit_map_Control;
36
37/** This defines the return type for an ISR entry point. */
38typedef void m32c_isr;
39
40/** This defines the prototype for an ISR entry point. */
41typedef m32c_isr ( *m32c_isr_entry )( void );
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif  /* !ASM */
48
49#endif
Note: See TracBrowser for help on using the repository browser.