RTEMS CPU Kit with SuperCore
4.11.3
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
_
b
c
d
i
r
+
Typedefs
a
b
c
d
f
h
i
m
o
p
q
r
s
t
u
w
x
+
Enumerations
b
c
d
e
h
i
m
o
p
r
s
t
w
+
Enumerator
c
i
m
p
r
s
t
w
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
mnt
data0
chrisj
rtems
releases
rtems-release.git
4.11.3
ws-rtems
rtems-4.11.3
cpukit
score
cpu
no_cpu
rtems
score
no_cpu.h
Go to the documentation of this file.
1
/* no_cpu.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 specified to the NO CPU 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.org/license/LICENSE.
15
*
16
*/
17
18
#ifndef _RTEMS_SCORE_NO_CPU_H
19
#define _RTEMS_SCORE_NO_CPU_H
20
21
#ifdef __cplusplus
22
extern
"C"
{
23
#endif
24
25
/*
26
* This file contains the information required to build
27
* RTEMS for a particular member of the NO CPU 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
#if defined(rtems_multilib)
38
/*
39
* Figure out all CPU Model Feature Flags based upon compiler
40
* predefines.
41
*/
42
43
#define CPU_MODEL_NAME "rtems_multilib"
44
#define NOCPU_HAS_FPU 1
45
46
#elif defined(no_cpu)
47
48
#define CPU_MODEL_NAME "no_cpu_model"
49
#define NOCPU_HAS_FPU 1
50
51
#else
52
53
#error "Unsupported CPU Model"
54
55
#endif
56
57
/*
58
* Define the name of the CPU family.
59
*/
60
61
#define CPU_NAME "NO CPU"
62
63
#ifdef __cplusplus
64
}
65
#endif
66
67
#endif
/* _RTEMS_SCORE_NO_CPU_H */
Generated by
1.8.13