Files
V2TMUMemTester/UnitTest/Sim/TestSimu.cpp
2026-03-07 15:10:59 +01:00

10 lines
198 B
C++

#include <systemc>
//#include "EDORam.hpp"
int main() {
// build modules, bind ports, etc.
sc_core::sc_start(100, sc_core::SC_NS); // run for 100 ns
sc_core::sc_stop();
return 0;
}