mirror of https://github.com/YosysHQ/yosys.git
36 lines
606 B
Verilog
36 lines
606 B
Verilog
module mult_24x20_map (
|
|
input [0:23] A,
|
|
input [0:19] B,
|
|
output [0:43] Y
|
|
);
|
|
parameter A_SIGNED = 0;
|
|
parameter B_SIGNED = 0;
|
|
parameter A_WIDTH = 0;
|
|
parameter B_WIDTH = 0;
|
|
parameter Y_WIDTH = 0;
|
|
|
|
mult24x20 #() _TECHMAP_REPLACE_ (
|
|
.A (A),
|
|
.B (B),
|
|
.Y (Y) );
|
|
|
|
endmodule
|
|
|
|
module mult_12x10_map (
|
|
input [0:11] A,
|
|
input [0:9] B,
|
|
output [0:21] Y
|
|
);
|
|
parameter A_SIGNED = 0;
|
|
parameter B_SIGNED = 0;
|
|
parameter A_WIDTH = 0;
|
|
parameter B_WIDTH = 0;
|
|
parameter Y_WIDTH = 0;
|
|
|
|
mult12x10 #() _TECHMAP_REPLACE_ (
|
|
.A (A),
|
|
.B (B),
|
|
.Y (Y) );
|
|
|
|
endmodule
|