aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/xilinx/xc3s_mult_map.v
blob: 67cd4ac60ee566c8ffb65e21bf16173be77027e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module \$__MUL18X18 (input [17:0] A, input [17:0] B, output [35:0] Y);
	parameter A_SIGNED = 0;
	parameter B_SIGNED = 0;
	parameter A_WIDTH = 0;
	parameter B_WIDTH = 0;
	parameter Y_WIDTH = 0;

	MULT18X18 _TECHMAP_REPLACE_ (
		.A(A),
		.B(B),
		.P(Y)
	);
endmodule