1
0
mirror of synced 2026-04-24 19:40:49 +00:00
Files
YosysHQ.yosys/tests/fmt/always_full_tb.v
Charlotte 04582f2fb7 verilog_backend: emit sync $print cells with same triggers together
Sort by PRIORITY, ensuring output order.
2023-08-11 04:46:52 +02:00

13 lines
156 B
Verilog

module always_full_tb;
reg clk = 0;
always_full uut (.clk(clk));
always begin
#1 clk <= ~clk;
#1 $finish;
end
endmodule