mirror of https://github.com/YosysHQ/yosys.git
4 lines
66 B
Coq
4 lines
66 B
Coq
|
module test(input a, output x, y);
|
||
|
assign x = a, y = a;
|
||
|
endmodule
|