OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [score/] [cpu/] [i386/] [rtems/] [score/] [i386types.h] - Blame information for rev 593

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  i386types.h
2
 *
3
 *  This include file contains type definitions pertaining to the Intel
4
 *  i386 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.OARcorp.com/rtems/license.html.
12
 *
13
 *  $Id: i386types.h,v 1.2 2001-09-27 11:59:27 chris Exp $
14
 */
15
 
16
#ifndef __i386_TYPES_h
17
#define __i386_TYPES_h
18
 
19
#ifndef ASM
20
 
21
#ifdef __cplusplus
22
extern "C" {
23
#endif
24
 
25
/*
26
 *  This section defines the basic types for this processor.
27
 */
28
 
29
typedef unsigned char  unsigned8;      /* unsigned 8-bit  integer */
30
typedef unsigned short unsigned16;     /* unsigned 16-bit integer */
31
typedef unsigned int   unsigned32;     /* unsigned 32-bit integer */
32
typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
33
 
34
typedef unsigned16     Priority_Bit_map_control;
35
 
36
typedef signed char      signed8;      /* 8-bit  signed integer */
37
typedef signed short     signed16;     /* 16-bit signed integer */
38
typedef signed int       signed32;     /* 32-bit signed integer */
39
typedef signed long long signed64;     /* 64 bit signed integer */
40
 
41
typedef unsigned32 boolean;     /* Boolean value   */
42
 
43
typedef float          single_precision;     /* single precision float */
44
typedef double         double_precision;     /* double precision float */
45
 
46
typedef void i386_isr;
47
 
48
typedef i386_isr ( *i386_isr_entry )( void );
49
 
50
#ifdef __cplusplus
51
}
52
#endif
53
 
54
#endif  /* !ASM */
55
 
56
#endif
57
/* end of include file */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.