gem5
v24.1.0.1
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
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
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
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
z
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
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
z
~
Functions
_
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
z
~
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
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
w
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
systemc
tests
systemc
misc
examples
a2901
a2901.h
Go to the documentation of this file.
1
/*****************************************************************************
2
3
Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4
more contributor license agreements. See the NOTICE file distributed
5
with this work for additional information regarding copyright ownership.
6
Accellera licenses this file to you under the Apache License, Version 2.0
7
(the "License"); you may not use this file except in compliance with the
8
License. You may obtain a copy of the License at
9
10
http://www.apache.org/licenses/LICENSE-2.0
11
12
Unless required by applicable law or agreed to in writing, software
13
distributed under the License is distributed on an "AS IS" BASIS,
14
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15
implied. See the License for the specific language governing
16
permissions and limitations under the License.
17
18
*****************************************************************************/
19
20
/*****************************************************************************
21
22
a2901.h --
23
24
Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
25
26
*****************************************************************************/
27
28
/*****************************************************************************
29
30
MODIFICATION LOG - modifiers, enter your name, affiliation, date and
31
changes you are making here.
32
33
Name, Affiliation, Date:
34
Description of Modification:
35
36
*****************************************************************************/
37
38
#ifndef A2901_H
39
#define A2901_H
40
41
#include "
a2901_alu.h
"
42
#include "
a2901_alu_inputs.h
"
43
#include "
a2901_output_and_shifter.h
"
44
#include "
a2901_edge.h
"
45
46
SC_MODULE
( a2901 )
47
{
48
// shared state
49
long
RAM[15];
50
51
// signals
52
sig4
RE, S, F, Q, A;
53
sig5
R_ext, S_ext;
54
55
// constructor
56
a2901( sc_module_name,
57
const
sc_clock& CLK_,
58
const
sig9
& I_,
59
const
sig4
& Aadd_,
60
const
sig4
& Badd_,
61
const
sig4
& D_,
62
const
sig1
& RAM0_,
63
const
sig1
& RAM3_,
64
const
sig1
& Q0_,
65
const
sig1
& Q3_,
66
const
sig1
& C0_,
67
const
sig1
& OEbar_,
68
sig4
& Y_,
69
sig1
& t_RAM0_,
70
sig1
& t_RAM3_,
71
sig1
& t_Q0_,
72
sig1
& t_Q3_,
73
sig1
& C4_,
74
sig1
& Gbar_,
75
sig1
& Pbar_,
76
sig1
& OVR_,
77
sig1
& F3_,
78
sig1
& F30_ )
79
{
80
SC_NEW
( a2901_alu(
"alu"
,
81
I_, RE, S, C0_,
82
R_ext, S_ext, F, OVR_, C4_, Pbar_, Gbar_,
83
F3_, F30_ ) );
84
SC_NEW
( a2901_alu_inputs(
"alu_inputs"
,
85
RAM,
86
I_, Aadd_, Badd_, D_, Q,
87
RE, S, A ) );
88
SC_NEW
( a2901_output_and_shifter(
"o_and_s"
,
89
I_, OEbar_, A, F, Q,
90
Y_, t_RAM0_, t_RAM3_,
91
t_Q0_, t_Q3_ ) );
92
SC_NEW
( a2901_edge(
"edge"
,
93
CLK_,
94
RAM,
95
I_, Badd_, F, Q3_, Q0_, RAM3_, RAM0_,
96
Q ) );
97
// initialize the RAM (to get rid of UMRs)
98
for
(
int
i = 0; i < 15; ++ i ) {
99
RAM[0] = 0;
100
}
101
}
102
};
46
SC_MODULE
( a2901 ) {
…
}
103
104
#endif
105
a2901_alu.h
a2901_alu_inputs.h
a2901_edge.h
a2901_output_and_shifter.h
sig1
sc_signal< int1 > sig1
Definition
common.h:48
sig9
sc_signal< int9 > sig9
Definition
common.h:51
sig4
sc_signal< int4 > sig4
Definition
common.h:49
sig5
sc_signal< int5 > sig5
Definition
common.h:50
SC_NEW
#define SC_NEW(x)
Definition
sc_module.hh:359
SC_MODULE
#define SC_MODULE(name)
Definition
sc_module.hh:295
Generated on Mon Jan 13 2025 04:28:44 for gem5 by
doxygen
1.9.8