source: rtems/cpukit/score/cpu/nios2/rtems/score/nios2.h @ 7a28ac8

4.104.115
Last change on this file since 7a28ac8 was 7a28ac8, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 15:41:37

2008-09-10 Joel Sherrill <joel.sherrill@…>

  • configure.ac, aclocal/canonical-target-name.m4: Readd NIOS2 and TI C4x. Accidentally not done on 4.9 branch. :(
  • score/cpu/c4x/.cvsignore, score/cpu/c4x/ChangeLog, score/cpu/c4x/Makefile.am, score/cpu/c4x/cpu.c, score/cpu/c4x/cpu_asm.S, score/cpu/c4x/irq.c, score/cpu/c4x/preinstall.am, score/cpu/c4x/rtems/asm.h, score/cpu/c4x/rtems/score/c4x.h, score/cpu/c4x/rtems/score/cpu.h, score/cpu/c4x/rtems/score/cpu_asm.h, score/cpu/c4x/rtems/score/types.h, score/cpu/c4x/rtems/tic4x/c4xio.h, score/cpu/nios2/.cvsignore, score/cpu/nios2/ChangeLog, score/cpu/nios2/Makefile.am, score/cpu/nios2/cpu.c, score/cpu/nios2/cpu_asm.S, score/cpu/nios2/irq.c, score/cpu/nios2/preinstall.am, score/cpu/nios2/rtems/asm.h, score/cpu/nios2/rtems/score/cpu.h, score/cpu/nios2/rtems/score/cpu_asm.h, score/cpu/nios2/rtems/score/nios2.h, score/cpu/nios2/rtems/score/types.h: New files.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  nios2.h
2 *
3 *  This file sets up basic CPU dependency settings based on
4 *  compiler settings.  For example, it can determine if
5 *  floating point is available.  This particular implementation
6 *  is specific to the NIOS2 port.
7 *
8 *
9 *  COPYRIGHT (c) 1989-1999.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 *
18 */
19
20#ifndef _RTEMS_SCORE_NIOS2_H
21#define _RTEMS_SCORE_NIOS2_H
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27/*
28 *  This file contains the information required to build
29 *  RTEMS for a particular member of the NIOS2 family.
30 *  It does this by setting variables to indicate which
31 *  implementation dependent features are present in a particular
32 *  member of the family.
33 *
34 *  This is a good place to list all the known CPU models
35 *  that this port supports and which RTEMS CPU model they correspond
36 *  to.
37 */
38 
39/*
40 *  Define the name of the CPU family and specific model.
41 */
42
43#define CPU_NAME "NIOS2"
44#define CPU_MODEL_NAME "nios2"
45
46/*
47 *  See also nios2-rtems-gcc -print-multi-lib for all valid combinations of
48 * 
49 *    -mno-hw-mul
50 *    -mhw-mulx
51 *    -mstack-check
52 *    -pg
53 *    -EB
54 *    -mcustom-fpu-cfg=60-1
55 *    -mcustom-fpu-cfg=60-2
56 */
57
58#ifdef __cplusplus
59}
60#endif
61
62#endif /* _RTEMS_SCORE_NIOS2_H */
Note: See TracBrowser for help on using the repository browser.