source: rtems/c/src/exec/score/cpu/arm/rtems/score/arm.h @ 7e950a4

4.104.114.84.95
Last change on this file since 7e950a4 was 7e950a4, checked in by Joel Sherrill <joel.sherrill@…>, on 12/18/01 at 14:09:49

2001-12-09 Ralf Corsepius <corsepiu@…>

  • asm.h: include cpuopts.h instead of targopts.h
  • rtems/score/arm.h: Use arm.
  • Property mode set to 100644
File size: 1.1 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) 2000 Canon Research Centre France SA.
8 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 */
15
16#ifndef _INCLUDE_ARM_h
17#define _INCLUDE_ARM_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  This file contains the information required to build
25 *  RTEMS for a particular member of the "arm"
26 *  family when executing in protected mode.  It does
27 *  this by setting variables to indicate which implementation
28 *  dependent features are present in a particular member
29 *  of the family.
30 */
31 
32#if defined(__arm__)
33 
34#define CPU_MODEL_NAME  "arm"
35#define ARM_HAS_FPU     0
36 
37#else
38 
39#error "Unsupported CPU Model"
40 
41#endif
42
43/*
44 *  Define the name of the CPU family.
45 */
46
47#define CPU_NAME "ARM"
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif /* ! _INCLUDE_ARM_h */
54/* end of include file */
Note: See TracBrowser for help on using the repository browser.