yosys/tests/ice40/mul.v

12 lines
99 B
Coq
Raw Normal View History

2019-08-19 23:50:05 -05:00
module top
(
input [5:0] x,
input [5:0] y,
2019-08-19 23:50:05 -05:00
output [11:0] A,
2019-08-19 23:50:05 -05:00
);
assign A = x * y;
endmodule