source: rtems/cpukit/score/cpu/sh/rtems/score/types.h @ 30e2df6

4.104.114.95
Last change on this file since 30e2df6 was 30e2df6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/21/08 at 04:10:35

Include stdbool.h. Use bool as base-type for boolean.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains information pertaining to the Hitachi SH
7 *  processor.
8 *
9 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
10 *           Bernd Becker (becker@faw.uni-ulm.de)
11 *
12 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 *
19 *  COPYRIGHT (c) 1998-2001.
20 *  On-Line Applications Research Corporation (OAR).
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.rtems.com/license/LICENSE.
25 *
26 *  $Id$
27 */
28
29#ifndef _RTEMS_SCORE_TYPES_H
30#define _RTEMS_SCORE_TYPES_H
31
32#ifndef ASM
33
34#include <stdbool.h>
35#include <rtems/stdint.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41/*
42 *  This section defines the basic types for this processor.
43 */
44
45typedef uint16_t     Priority_Bit_map_control;
46
47typedef bool boolean;                           /* Boolean value, external */
48                                                /* data bus has 16 bits  */
49
50typedef float          single_precision;        /* single precision float */
51typedef double         double_precision;        /* double precision float */
52
53typedef void sh_isr;
54typedef void ( *sh_isr_entry )( void );
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif  /* !ASM */
61
62#endif
Note: See TracBrowser for help on using the repository browser.