source: rtems/c/src/exec/score/cpu/mips64orion/mipstypes.h @ 2ff1d549

4.104.114.84.95
Last change on this file since 2ff1d549 was cda277f, checked in by Joel Sherrill <joel.sherrill@…>, on 09/11/96 at 19:16:07

added $Id$ to file headers

cpu.h: added prototype for _CPU_ISR_Get_level()

  • Property mode set to 100644
File size: 2.4 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, 1990, 1991, 1992, 1993, 1994.
22 *  On-Line Applications Research Corporation (OAR).
23 *  All rights assigned to U.S. Government, 1994.
24 *
25 *  This material may be reproduced by or for the U.S. Government pursuant
26 *  to the copyright license under the clause at DFARS 252.227-7013.  This
27 *  notice must appear in all copies of this file and its derivatives.
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.