source: rtems/cpukit/score/cpu/i960/rtems/score/types.h @ ca5e433

4.104.114.84.95
Last change on this file since ca5e433 was ca5e433, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:54:51

2003-09-04 Joel Sherrill <joel@…>

  • cpu.c, cpu_asm.S, rtems/score/cpu.h, rtems/score/i960.h, rtems/score/types.h: URL for license changed.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*  i960types.h
2 *
3 *  This include file contains type definitions pertaining to the Intel
4 *  i960 processor family.
5 *
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef __i960_TYPES_h
17#define __i960_TYPES_h
18
19#ifndef ASM
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/*
26 *  This section defines the basic types for this processor.
27 */
28
29typedef unsigned char  unsigned8;      /* unsigned 8-bit  integer */
30typedef unsigned short unsigned16;     /* unsigned 16-bit integer */
31typedef unsigned int   unsigned32;     /* unsigned 32-bit integer */
32typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
33
34typedef unsigned32     Priority_Bit_map_control;
35
36typedef signed char      signed8;      /* 8-bit  signed integer */
37typedef signed short     signed16;     /* 16-bit signed integer */
38typedef signed int       signed32;     /* 32-bit signed integer */
39typedef signed long long signed64;     /* 64 bit signed integer */
40
41typedef unsigned32 boolean;     /* Boolean value   */
42
43typedef float          single_precision;     /* single precision float */
44typedef double         double_precision;     /* double precision float */
45
46typedef void i960_isr;
47
48typedef void ( *i960_isr_entry )( void );
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif  /* !ASM */
55
56#endif
57/* end of include file */
Note: See TracBrowser for help on using the repository browser.