source: rtems/cpukit/score/cpu/no_cpu/rtems/score/types.h @ b9b531f

4.104.114.84.95
Last change on this file since b9b531f was b9b531f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/24/05 at 03:54:22

2005-01-24 Ralf Corsepius <ralf.corsepius@…>

  • rtems/score/types.h: #include <rtems/stdint.h>.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains type definitions pertaining to the Intel
7 *  no_cpu processor family.
8 *
9 *  COPYRIGHT (c) 1989-1999.
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
19#ifndef __rtems_score_types_h
20#define __rtems_score_types_h
21
22#ifndef ASM
23
24#include <rtems/stdint.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
34typedef unsigned char  unsigned8;      /* unsigned 8-bit  integer */
35typedef unsigned short unsigned16;     /* unsigned 16-bit integer */
36typedef unsigned int   unsigned32;     /* unsigned 32-bit integer */
37typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
38
39typedef unsigned16     Priority_Bit_map_control;
40
41typedef signed char      signed8;      /* 8-bit  signed integer */
42typedef signed short     signed16;     /* 16-bit signed integer */
43typedef signed int       signed32;     /* 32-bit signed integer */
44typedef signed long long signed64;     /* 64 bit signed integer */
45
46typedef unsigned32 boolean;     /* Boolean value   */
47
48typedef float          single_precision;     /* single precision float */
49typedef double         double_precision;     /* double precision float */
50
51typedef void no_cpu_isr;
52typedef void ( *no_cpu_isr_entry )( void );
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif  /* !ASM */
59
60#endif
Note: See TracBrowser for help on using the repository browser.