Files
simbench/test-cvc/top.sv

8 lines
184 B
Systemverilog
Raw Normal View History

2023-07-11 19:46:33 +03:00
`timescale 1ps/1ps
module top #(parameter CPU_COUNT = 1024);
logic clock = 1'b0;
initial forever #5000 clock = ~clock;
testbench #(CPU_COUNT) testbench (clock);
endmodule