source: rtems/c/src/exec/score/cpu/mips/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: 2.3 KB
Line 
1/*  mipstypes.h
2 *
3 *  This include file contains type definitions pertaining to the IDT 4650
4 *  processor family.
5 *
6 *  Author:     Craig Lebakken <craigl@transition.com>
7 *
8 *  COPYRIGHT (c) 1996 by Transition Networks Inc.
9 *
10 *  To anyone who acknowledges that this file is provided "AS IS"
11 *  without any express or implied warranty:
12 *      permission to use, copy, modify, and distribute this file
13 *      for any purpose is hereby granted without fee, provided that
14 *      the above copyright notice and this notice appears in all
15 *      copies, and that the name of Transition Networks not be used in
16 *      advertising or publicity pertaining to distribution of the
17 *      software without specific, written prior permission.
18 *      Transition Networks makes no representations about the suitability
19 *      of this software for any purpose.
20 *
21 *  COPYRIGHT (c) 1989-1998.
22 *  On-Line Applications Research Corporation (OAR).
23 *  Copyright assigned to U.S. Government, 1994.
24 *
25 *  The license and distribution terms for this file may be
26 *  found in the file LICENSE in this distribution or at
27 *  http://www.OARcorp.com/rtems/license.html.
28 *
29 *  $Id$
30 */
31/* @(#)mipstypes.h       08/20/96     1.4 */
32
33#ifndef __MIPS_TYPES_h
34#define __MIPS_TYPES_h
35
36#ifndef ASM
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42/*
43 *  This section defines the basic types for this processor.
44 */
45
46typedef unsigned char      unsigned8;  /* unsigned 8-bit  integer */
47typedef unsigned short     unsigned16; /* unsigned 16-bit integer */
48typedef unsigned int       unsigned32; /* unsigned 32-bit integer */
49typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
50
51typedef unsigned16     Priority_Bit_map_control;
52
53typedef signed char      signed8;      /* 8-bit  signed integer */
54typedef signed short     signed16;     /* 16-bit signed integer */
55typedef signed int       signed32;     /* 32-bit signed integer */
56typedef signed long long signed64;     /* 64 bit signed integer */
57
58typedef unsigned32 boolean;     /* Boolean value   */
59
60typedef float          single_precision;     /* single precision float */
61typedef double         double_precision;     /* double precision float */
62
63typedef void mips_isr;
64typedef void ( *mips_isr_entry )( void );
65
66#ifdef __cplusplus
67}
68#endif
69
70#endif  /* !ASM */
71
72#endif
73/* end of include file */
Note: See TracBrowser for help on using the repository browser.