mirror of https://github.com/YosysHQ/yosys.git
12 lines
99 B
Coq
12 lines
99 B
Coq
|
module top
|
||
|
(
|
||
|
input [5:0] x,
|
||
|
input [5:0] y,
|
||
|
|
||
|
output [11:0] A,
|
||
|
);
|
||
|
|
||
|
assign A = x * y;
|
||
|
|
||
|
endmodule
|