source: rtems/cpukit/score/cpu/mips64orion/rtems/score/mips64orion.h @ 7713808

4.104.114.84.95
Last change on this file since 7713808 was 7713808, checked in by Joel Sherrill <joel.sherrill@…>, on 02/19/99 at 23:26:19

Moved to proper rtems/score

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*  mips64orion.h
2 *
3 *  Author:     Craig Lebakken <craigl@transition.com>
4 *
5 *  COPYRIGHT (c) 1996 by Transition Networks Inc.
6 *
7 *  To anyone who acknowledges that this file is provided "AS IS"
8 *  without any express or implied warranty:
9 *      permission to use, copy, modify, and distribute this file
10 *      for any purpose is hereby granted without fee, provided that
11 *      the above copyright notice and this notice appears in all
12 *      copies, and that the name of Transition Networks not be used in
13 *      advertising or publicity pertaining to distribution of the
14 *      software without specific, written prior permission.
15 *      Transition Networks makes no representations about the suitability
16 *      of this software for any purpose.
17 *
18 *  Derived from c/src/exec/score/cpu/no_cpu/no_cpu.h:
19 *
20 *  COPYRIGHT (c) 1989-1998.
21 *  On-Line Applications Research Corporation (OAR).
22 *
23 *  The license and distribution terms for this file may be
24 *  found in the file LICENSE in this distribution or at
25 *  http://www.OARcorp.com/rtems/license.html.
26 *
27 *  $Id$
28 */
29/* @(#)mips64orion.h       08/29/96     1.3 */
30
31#ifndef _INCLUDE_MIPS64ORION_h
32#define _INCLUDE_MIPS64ORION_h
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/*
39 *  This file contains the information required to build
40 *  RTEMS for a particular member of the "no cpu"
41 *  family when executing in protected mode.  It does
42 *  this by setting variables to indicate which implementation
43 *  dependent features are present in a particular member
44 *  of the family.
45 */
46 
47#if defined(R4650)
48 
49#define CPU_MODEL_NAME  "R4650"
50#define MIPS64ORION_HAS_FPU     1
51 
52#elif defined(R4600)
53 
54#define CPU_MODEL_NAME  "R4600"
55#define MIPS64ORION_HAS_FPU     1
56
57#else
58 
59#error "Unsupported CPU Model"
60 
61#endif
62
63/*
64 *  Define the name of the CPU family.
65 */
66
67#define CPU_NAME "MIPS R46xxx"
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif /* ! _INCLUDE_MIPS64ORION_h */
74/* end of include file */
Note: See TracBrowser for help on using the repository browser.