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

4.8
Last change on this file since b72e847b was 795da078, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/17/06 at 05:58:06

2006-11-17 Ralf Corsépius <ralf.corsepius@…>

  • rtems/score/types.h: Remove unsigned64, signed64.
  • Property mode set to 100644
File size: 1011 bytes
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 _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 uint16_t         Priority_Bit_map_control;
35
36typedef uint32_t         boolean;              /* Boolean value   */
37
38typedef float              single_precision;     /* single precision float */
39typedef double             double_precision;     /* double precision float */
40
41typedef void sparc_isr;
42typedef void ( *sparc_isr_entry )( void );
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif  /* !ASM */
49
50#endif
Note: See TracBrowser for help on using the repository browser.