Add VCS and Xcelium run time. Fix RTL for VCS to work correctly

This commit is contained in:
Nikolay Puzanov
2023-06-21 11:27:48 +03:00
parent 519410e392
commit 31ac4a8d46
6 changed files with 51 additions and 10 deletions

7
test-vcs/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 #(10ns/2) clock = ~clock;
testbench #(CPU_COUNT) testbench (clock);
endmodule