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