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

4.104.114.84.95
Last change on this file since 2ff1d549 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.2 KB
Line 
1/*  no_cpu.h
2 *
3 *  This file is an example (i.e. "no CPU") of the file which is
4 *  created for each CPU family port of RTEMS.
5 *
6 *
7 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 *
14 *  $Id$
15 *
16 */
17
18#ifndef _INCLUDE_NO_CPU_h
19#define _INCLUDE_NO_CPU_h
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/*
26 *  This file contains the information required to build
27 *  RTEMS for a particular member of the "no cpu"
28 *  family when executing in protected mode.  It does
29 *  this by setting variables to indicate which implementation
30 *  dependent features are present in a particular member
31 *  of the family.
32 */
33 
34#if defined(no_cpu)
35 
36#define CPU_MODEL_NAME  "no_cpu"
37#define NOCPU_HAS_FPU     1
38 
39#else
40 
41#error "Unsupported CPU Model"
42 
43#endif
44
45/*
46 *  Define the name of the CPU family.
47 */
48
49#define CPU_NAME "NO CPU"
50
51#ifdef __cplusplus
52}
53#endif
54
55#endif /* ! _INCLUDE_NO_CPU_h */
56/* end of include file */
Note: See TracBrowser for help on using the repository browser.