mirror of https://github.com/YosysHQ/yosys.git
6 lines
90 B
Coq
6 lines
90 B
Coq
|
module test(input [1:0] in, output reg [1:0] out);
|
||
|
|
||
|
always @(in)
|
||
|
out = in;
|
||
|
endmodule
|