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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [score/] [cpu/] [mips64orion/] [rtems/] [score/] [mipstypes.h] - Blame information for rev 30

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

Line No. Rev Author Line
1 30 unneback
/*  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: mipstypes.h,v 1.2 2001-09-27 11:59:28 chris Exp $
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
38
extern "C" {
39
#endif
40
 
41
/*
42
 *  This section defines the basic types for this processor.
43
 */
44
 
45
typedef unsigned char      unsigned8;  /* unsigned 8-bit  integer */
46
typedef unsigned short     unsigned16; /* unsigned 16-bit integer */
47
typedef unsigned int       unsigned32; /* unsigned 32-bit integer */
48
typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
49
 
50
typedef unsigned16     Priority_Bit_map_control;
51
 
52
typedef signed char      signed8;      /* 8-bit  signed integer */
53
typedef signed short     signed16;     /* 16-bit signed integer */
54
typedef signed int       signed32;     /* 32-bit signed integer */
55
typedef signed long long signed64;     /* 64 bit signed integer */
56
 
57
typedef unsigned32 boolean;     /* Boolean value   */
58
 
59
typedef float          single_precision;     /* single precision float */
60
typedef double         double_precision;     /* double precision float */
61
 
62
typedef void mips_isr;
63
typedef void ( *mips_isr_entry )( void );
64
 
65
#ifdef __cplusplus
66
}
67
#endif
68
 
69
#endif  /* !ASM */
70
 
71
#endif
72
/* end of include file */

powered by: WebSVN 2.1.0

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