yosys/tests/ice40/dffs.v

6 lines
102 B
Verilog

module top
( input d, clk, output reg q );
always @( posedge clk )
q <= d;
endmodule