Files
verilog-playground/_template_iverilog/testbench.sv
Nikolay Puzanov a67cca5aa8 Initial commit
2022-11-17 13:02:15 +03:00

14 lines
271 B
Systemverilog

`timescale 1ps/1ps
/* verilator lint_off DECLFILENAME */
/* verilator lint_off MULTITOP */
/* verilator lint_off STMTDLY */
/* verilator lint_off INFINITELOOP */
/* verilator lint_off INITIALDLY */
module testbench;
initial begin
$finish;
end
endmodule