yosys/tests/hana/test_simulation_seq_ff_1_te...

5 lines
99 B
Verilog

module test(input in, input clk, output reg out);
always @(posedge clk)
out <= in;
endmodule