mirror of https://github.com/YosysHQ/yosys.git
10 lines
106 B
Coq
10 lines
106 B
Coq
|
module wire_example( a, b, y);
|
||
|
input a, b;
|
||
|
output y;
|
||
|
|
||
|
wire a, b, y;
|
||
|
|
||
|
assign y = a & b;
|
||
|
|
||
|
endmodule
|