Files

8 lines
188 B
Systemverilog
Raw Permalink Normal View History

2023-06-11 22:23:23 +03:00
`timescale 1ps/1ps
2023-06-17 10:56:00 +03:00
module top #(parameter CPU_COUNT = 1024);
2023-06-11 22:23:23 +03:00
logic clock = 1'b0;
initial forever #(10ns/2) clock = ~clock;
2023-06-17 10:56:00 +03:00
testbench #(CPU_COUNT) testbench (clock);
2023-06-11 22:23:23 +03:00
endmodule