mirror of
https://github.com/YosysHQ/yosys
synced 2025-12-03 18:46:45 +00:00
4 lines
99 B
Verilog
4 lines
99 B
Verilog
module test(input in, input clk, output reg out);
|
|
always @(posedge clk)
|
|
out <= in;
|
|
endmodule
|