-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtest_const_prop_dead_state.cpp
64 lines (45 loc) · 1.12 KB
/
test_const_prop_dead_state.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
/******************************************************************************
* Copyright (c) 2020, Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
*
*****************************************************************************/
//
// Created by ripopov on 7/11/18.
//
#include <systemc.h>
#include <sct_assert.h>
SC_MODULE(top) {
sc_in<bool> clk;
sc_signal<bool> nrst;
SC_CTOR(top) {
SC_CTHREAD(test_thread, clk.pos());
async_reset_signal_is(nrst, 0);
}
sc_signal<bool> din;
void test_thread() {
while (1) {
int x = 1;
x++;
if (x == 1)
wait();
for (size_t i = 2; i > x; --i) {
wait();
}
while (x == 1) {
wait();
x++;
}
if (din)
wait();
wait();
}
}
};
int sc_main (int argc, char ** argv ) {
sc_clock clk{"clk", 10, SC_NS};
top top_inst{"top_inst"};
top_inst.clk(clk);
sc_start(400, SC_NS);
return 0;
}