3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/tests/fmt/always_comb_tb.v
Charlotte 843ad9331b cxxrtl: WIP: adjust comb display cells to only fire on change
Naming and use of statics to be possibly revised.
2023-08-11 04:46:52 +02:00

9 lines
117 B
Verilog

module tb;
reg clk = 0;
top uut (.clk(clk));
always #1 clk <= ~clk;
initial #20 $finish;
endmodule