Still giving sc_time_stamp error

This commit is contained in:
felsabbagh3
2019-10-16 19:45:21 -04:00
parent 8bc3b8b0a5
commit 0690043a43
11 changed files with 375 additions and 905 deletions

View File

@@ -0,0 +1,19 @@
#include "Vrf2_32x128_wm1_rtl.h"
#include "verilated.h"
int main()
{
Vrf2_32x128_wm1_rtl module;
for (int i = 0; i < 10; i++)
{
// module.clk = 0;
module.eval();
// module.clk = 1;
module.eval();
}
return 0;
}