mirror of https://github.com/YosysHQ/icestorm.git
4 lines
65 B
Coq
4 lines
65 B
Coq
|
|
module top (input a, b, output y);
|
||
|
|
assign y = a & b;
|
||
|
|
endmodule
|