source: rtems/c/src/exec/score/cpu/a29k/a29k.h @ 541dfb2

4.104.114.84.95
Last change on this file since 541dfb2 was 541dfb2, checked in by Joel Sherrill <joel.sherrill@…>, on 01/29/97 at 00:22:24

Removed definitions which are now in targopts.h. This eliminates the
need for the "sed'ing" of this file. This should be a significant win
when addressing non-unix host and non-gnu toolsets.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  a29k.h
2 *
3 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  This material may be reproduced by or for the U.S. Government pursuant
7 *  to the copyright license under the clause at DFARS 252.227-7013.  This
8 *  notice must appear in all copies of this file and its derivatives.
9 *
10 *  $Id$
11 *
12 */
13/* @(#)a29k.h       10/21/96     1.3 */
14
15#ifndef _INCLUDE_A29K_h
16#define _INCLUDE_A29K_h
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/*
23 *  This file contains the information required to build
24 *  RTEMS for a particular member of the "no cpu"
25 *  family when executing in protected mode.  It does
26 *  this by setting variables to indicate which implementation
27 *  dependent features are present in a particular member
28 *  of the family.
29 */
30 
31#if defined(a29205)
32 
33#define CPU_MODEL_NAME  "a29205"
34#define A29K_HAS_FPU     0
35 
36#else
37 
38#error "Unsupported CPU Model"
39 
40#endif
41
42/*
43 *  Define the name of the CPU family.
44 */
45
46#define CPU_NAME "AMD 29K"
47
48/*
49 * Some bits in the CPS:
50 */
51#define TD      0x20000
52#define DI      0x00002
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* ! _INCLUDE_A29K_h */
59/* end of include file */
Note: See TracBrowser for help on using the repository browser.