source: rtems/cpukit/score/cpu/lm32/rtems/score/types.h @ 416f1efb

4.115
Last change on this file since 416f1efb was 416f1efb, checked in by Gedare Bloom <gedare@…>, on 04/16/12 at 02:23:59

lm32: replace lm32_isr with rtems_isr

  • Property mode set to 100644
File size: 868 bytes
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains type definitions pertaining to the
7 *  Lattice lm32 processor family.
8 *
9 *  COPYRIGHT (c) 1989-2006.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 *
18 *  Jukka Pietarinen <jukka.pietarinen@mrf.fi>, 2008,
19 *  Micro-Research Finland Oy
20 */
21
22#ifndef _RTEMS_SCORE_TYPES_H
23#define _RTEMS_SCORE_TYPES_H
24
25#include <rtems/score/basedefs.h>
26
27#ifndef ASM
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/*
34 *  This section defines the basic types for this processor.
35 */
36
37/** This defines the type for a priority bit map entry. */
38typedef uint16_t Priority_bit_map_Control;
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif  /* !ASM */
45
46#endif
Note: See TracBrowser for help on using the repository browser.