Files
simbench/test-modelsim/top.sv

8 lines
145 B
Systemverilog
Raw Normal View History

2023-06-11 16:15:40 +03:00
`timescale 1ps/1ps
module top;
logic clock = 1'b0;
initial forever #(10ns/2) clock = ~clock;
testbench testbench (clock);
endmodule