3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00
yosys/tests/arch/common/mul.v
Dan Ravensloft 1a07b330f8 intel_alm: Add multiply signedness to cells
Quartus assumes unsigned multiplication by default, breaking signed
multiplies, so add an input signedness parameter to the MISTRAL_MUL*
cells to propagate to Quartus' <family>_mac cells.
2020-08-26 22:50:16 +02:00

11 lines
178 B
Verilog

module top
#(parameter X_WIDTH=6, Y_WIDTH=6, A_WIDTH=12)
(
input [X_WIDTH-1:0] x,
input [Y_WIDTH-1:0] y,
output [A_WIDTH-1:0] A,
);
assign A = x * y;
endmodule