Add CVC simulator run scripts

This commit is contained in:
Nikolay Puzanov
2023-07-11 19:46:33 +03:00
parent a71258f7f6
commit 8b8f63105c
9 changed files with 82 additions and 0 deletions

7
test-cvc/top.sv Normal file
View File

@@ -0,0 +1,7 @@
`timescale 1ps/1ps
module top #(parameter CPU_COUNT = 1024);
logic clock = 1'b0;
initial forever #5000 clock = ~clock;
testbench #(CPU_COUNT) testbench (clock);
endmodule