yosys/tests/ice40/mul.v

12 lines
99 B
Verilog

module top
(
input [5:0] x,
input [5:0] y,
output [11:0] A,
);
assign A = x * y;
endmodule