source: rtems/c/src/exec/score/cpu/mips64orion/rtems/score/mipstypes.h @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 2.2 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-1999.
22 *  On-Line Applications Research Corporation (OAR).
23 *
24 *  The license and distribution terms for this file may be
25 *  found in the file LICENSE in this distribution or at
26 *  http://www.OARcorp.com/rtems/license.html.
27 *
28 *  $Id$
29 */
30/* @(#)mipstypes.h       08/20/96     1.4 */
31
32#ifndef __MIPS_TYPES_h
33#define __MIPS_TYPES_h
34
35#ifndef ASM
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41/*
42 *  This section defines the basic types for this processor.
43 */
44
45typedef unsigned char      unsigned8;  /* unsigned 8-bit  integer */
46typedef unsigned short     unsigned16; /* unsigned 16-bit integer */
47typedef unsigned int       unsigned32; /* unsigned 32-bit integer */
48typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
49
50typedef unsigned16     Priority_Bit_map_control;
51
52typedef signed char      signed8;      /* 8-bit  signed integer */
53typedef signed short     signed16;     /* 16-bit signed integer */
54typedef signed int       signed32;     /* 32-bit signed integer */
55typedef signed long long signed64;     /* 64 bit signed integer */
56
57typedef unsigned32 boolean;     /* Boolean value   */
58
59typedef float          single_precision;     /* single precision float */
60typedef double         double_precision;     /* double precision float */
61
62typedef void mips_isr;
63typedef void ( *mips_isr_entry )( void );
64
65#ifdef __cplusplus
66}
67#endif
68
69#endif  /* !ASM */
70
71#endif
72/* end of include file */
Note: See TracBrowser for help on using the repository browser.