3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-26 10:38:47 +00:00
yosys/tests/hana/test_simulation_seq.v
2026-06-23 07:24:59 +02:00

12 lines
275 B
Verilog

// test_simulation_seq_ff_1_test.v
module f1_test(input in, input clk, output reg out);
always @(posedge clk)
out <= in;
endmodule
// test_simulation_seq_ff_2_test.v
module f2_test(input in, input clk, output reg out);
always @(negedge clk)
out <= in;
endmodule