source: rtems/cpukit/score/cpu/sparc/rtems/score/types.h @ f4ae0c5

4.104.114.84.95
Last change on this file since f4ae0c5 was f4ae0c5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/02/04 at 07:40:14

2004-10-02 Ralf Corsepius <ralf_corsepius@…>

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