source: rtems/c/src/exec/score/cpu/i386/rtems/score/types.h @ 7908ba5b

4.104.114.84.95
Last change on this file since 7908ba5b was 7908ba5b, checked in by Joel Sherrill <joel.sherrill@…>, on 02/18/99 at 18:28:24

Part of the automake VI patch from Ralf Corsepius <corsepiu@…>:

4) rtems-rc-19990202-0.diff /reorg-score-cpu.sh

reorg-score-cpu.sh reorganizes the cpu/<cpu>/* subdirectories in a
similar manner than previous reorg scripts did. rtems-rc-19990202-0.diff
contains the diffs after reorg-score-cpu.sh has been run on a
rtems-19981215 snapshot + my patches up to rtems-rc-19990131-2.diff.

This patch is rather nasty and may break something. However, I've tested
it for about 10 different target/bsp pairs and believe to have shaken
out most bugs.

I wonder about the following .h files that were not moved:

a29k/asm.h
a29k/cpu_asm.h
i386/asm.h
i960/asm.h
m68k/asm.h
m68k/m68302.h
m68k/m68360.h
m68k/qsm.h
m68k/sim.h
mips64orion/asm.h
mips64orion/cpu_asm.h
mips64orion/mips64orion.h
no_cpu/asm.h
no_cpu/cpu_asm.h
powerpc/asm.h
powerpc/mpc860.h
sh/asm.h
sparc/asm.h
sparc/erc32.h

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