source: rtems/cpukit/score/cpu/arm/rtems/score/types.h @ 78623bce

4.104.115
Last change on this file since 78623bce was 78623bce, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 04/08/10 at 10:13:46

add/adapt documentation

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup ScoreCPU
5 *
6 * @brief ARM architecture types API.
7 */
8
9/*
10 *  $Id$
11 *
12 *  This include file contains type definitions pertaining to the
13 *  arm processor family.
14 *
15 *  COPYRIGHT (c) 2000 Canon Research Centre France SA.
16 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
17 *
18 *  The license and distribution terms for this file may be
19 *  found in the file LICENSE in this distribution or at
20 *  http://www.rtems.com/license/LICENSE.
21 *
22 */
23
24#ifndef _RTEMS_SCORE_TYPES_H
25#define _RTEMS_SCORE_TYPES_H
26
27#ifndef ASM
28
29#include <stdbool.h>
30#include <stdint.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/**
37 * @addtogroup ScoreCPU
38 *
39 * @{
40 */
41
42/*
43 *  This section defines the basic types for this processor.
44 */
45
46typedef uint16_t         Priority_Bit_map_control;
47
48#ifdef RTEMS_DEPRECATED_TYPES
49typedef bool            boolean;            /* Boolean value   */
50typedef float           single_precision;   /* single precision float */
51typedef double          double_precision;   /* double precision float */
52#endif
53
54/** @} */
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif  /* !ASM */
61
62#endif
Note: See TracBrowser for help on using the repository browser.