-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_mif_with_chan_array.cpp
84 lines (66 loc) · 1.68 KB
/
test_mif_with_chan_array.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
//
// Created by mmoiseev on 09/20/19.
//
#include <systemc.h>
// Modular interface with array of pointers/channels/variables inside
template<unsigned N>
struct mod_if : public sc_module, sc_interface
{
sc_in_clk clk{"clk"};
sc_signal<bool> rst{"rst"};
sc_signal<bool>* s[N];
sc_signal<bool> r[N];
bool v[N];
bool vv[N];
SC_CTOR(mod_if)
{
assert (N > 1);
for (int i = 0; i < N; i++) {
s[i] = new sc_signal<bool>("s[i]");
}
SC_METHOD(meth);
sensitive << (*s[1]) << r[1];
SC_CTHREAD(thread, clk.pos());
async_reset_signal_is(rst, 1);
}
sc_signal<int> t0;
void meth() {
v[1] = false;
bool b = *s[1] || r[1] || v[1];
t0 = b;
}
sc_signal<int> t1;
void thread() {
bool c;
vv[1] = false;
wait();
while(true) {
c = *s[1] || r[1] || vv[1];
wait();
bool d = c;
t1 = d;
}
}
};
SC_MODULE(Top) {
sc_in_clk clk{"clk"};
sc_signal<bool> rst;
mod_if<2> minst{"minst"};
SC_CTOR(Top) {
minst.clk(clk);
}
};
int sc_main(int argc, char **argv)
{
sc_clock clk("clk", sc_time(1, SC_NS));
Top top{"top"};
top.clk(clk);
sc_start();
return 0;
}