-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_mif_array_with_chan.cpp
72 lines (52 loc) · 1.31 KB
/
test_mif_array_with_chan.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
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
//
// Created by mmoiseev on 06/14/19.
//
#include <systemc.h>
// Array of modular interface pointers with signal declaration
struct mod_if : public sc_module, sc_interface
{
sc_signal<bool> s{"s"};
SC_CTOR(mod_if)
{
SC_METHOD(metProc);
sensitive << s;
}
sc_signal<int> t1;
void metProc() {
bool d = s;
t1 = d;
}
};
SC_MODULE(top) {
sc_in_clk clk{"clk"};
sc_in<bool> rst;
mod_if* minst[2];
SC_CTOR(top) {
for (int i = 0; i < 2; i++) {
minst[i] = new mod_if("mod_if");
//minst[i]->clk(clk);
//minst[i]->rst(rst);
}
}
};
SC_MODULE(tb) {
sc_clock clk {"clk", sc_time(1, SC_NS)};
sc_signal<bool> rst {"rst"};
top top_inst{"top_inst"};
SC_CTOR(tb) {
top_inst.clk(clk);
top_inst.rst(rst);
}
};
int sc_main(int argc, char **argv) {
cout << "test_modular_iface_proc\n";
tb tb_inst{"tb_inst"};
sc_start();
return 0;
}