The Sparta Modeling Framework
Loading...
Searching...
No Matches
systemc_example_top.cpp
1
2#include "systemc_example_top.hpp"
3
4namespace systemc_example
5{
6 systemc_example_top::systemc_example_top(sc_core::sc_module_name name) :
7 sc_module(name),
8 m_bus("m_bus"),
9 m_initiator_1("m_initiator_1", 101,
10 0x0000000000000100ull, 0x0000000010000100, 2),
11 m_initiator_2("m_initiator_2", 102,
12 0x0000000000000200ull, 0x0000000010000200, 2)
13 {
15 m_initiator_1.initiator_socket(m_bus.target_socket[0]);
16 m_initiator_2.initiator_socket(m_bus.target_socket[1]);
17 }
18}
systemc_example_top(sc_core::sc_module_name name)