source: rtems/cpukit/score/cpu/nios2/rtems/score/nios2.h @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • 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 */
17
18#ifndef _RTEMS_SCORE_NIOS2_H
19#define _RTEMS_SCORE_NIOS2_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 NIOS2 family.
28 *  It does this by setting variables to indicate which
29 *  implementation dependent features are present in a particular
30 *  member of the family.
31 *
32 *  This is a good place to list all the known CPU models
33 *  that this port supports and which RTEMS CPU model they correspond
34 *  to.
35 */
36
37/*
38 *  Define the name of the CPU family and specific model.
39 */
40
41#define CPU_NAME "NIOS2"
42#define CPU_MODEL_NAME "nios2"
43
44/*
45 *  See also nios2-rtems-gcc -print-multi-lib for all valid combinations of
46 *
47 *    -mno-hw-mul
48 *    -mhw-mulx
49 *    -mstack-check
50 *    -pg
51 *    -EB
52 *    -mcustom-fpu-cfg=60-1
53 *    -mcustom-fpu-cfg=60-2
54 */
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif /* _RTEMS_SCORE_NIOS2_H */
Note: See TracBrowser for help on using the repository browser.