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
m32r
rtems
score
m32r.h
Go to the documentation of this file.
1
12
/*
13
* COPYRIGHT (c) 1989-1999.
14
* On-Line Applications Research Corporation (OAR).
15
*
16
* The license and distribution terms for this file may be
17
* found in the file LICENSE in this distribution or at
18
* http://www.rtems.org/license/LICENSE.
19
*/
20
21
#ifndef _RTEMS_SCORE_NO_CPU_H
22
#define _RTEMS_SCORE_NO_CPU_H
23
24
#ifdef __cplusplus
25
extern
"C"
{
26
#endif
27
28
/*
29
* This file contains the information required to build
30
* RTEMS for a particular member of the NO CPU family.
31
* It does this by setting variables to indicate which
32
* implementation dependent features are present in a particular
33
* member of the family.
34
*
35
* This is a good place to list all the known CPU models
36
* that this port supports and which RTEMS CPU model they correspond
37
* to.
38
*/
39
40
#if defined(rtems_multilib)
41
/*
42
* Figure out all CPU Model Feature Flags based upon compiler
43
* predefines.
44
*/
45
46
#define CPU_MODEL_NAME "rtems_multilib"
47
#define NOCPU_HAS_FPU 1
48
49
#elif defined(__m32r__)
50
51
#define CPU_MODEL_NAME "m32r"
52
#define NOCPU_HAS_FPU 1
53
54
#else
55
56
#error "Unsupported CPU Model"
57
58
#endif
59
60
/*
61
* Define the name of the CPU family.
62
*/
63
64
#define CPU_NAME "NO CPU"
65
66
#ifdef __cplusplus
67
}
68
#endif
69
70
#endif
/* _RTEMS_SCORE_NO_CPU_H */
Generated by
1.8.13