1 |
2 |
lucas.vbal |
--lpm_mult CBX_DECLARE_ALL_CONNECTED_PORTS="OFF" DEVICE_FAMILY="Cyclone IV E" DSP_BLOCK_BALANCING="Auto" LPM_PIPELINE=1 LPM_REPRESENTATION="SIGNED" LPM_WIDTHA=16 LPM_WIDTHB=16 LPM_WIDTHP=16 MAXIMIZE_SPEED=5 clock dataa datab result CARRY_CHAIN="MANUAL" CARRY_CHAIN_LENGTH=48
|
2 |
|
|
--VERSION_BEGIN 17.0 cbx_cycloneii 2017:04:25:18:06:29:SJ cbx_lpm_add_sub 2017:04:25:18:06:29:SJ cbx_lpm_mult 2017:04:25:18:06:29:SJ cbx_mgl 2017:04:25:18:09:28:SJ cbx_nadder 2017:04:25:18:06:30:SJ cbx_padd 2017:04:25:18:06:30:SJ cbx_stratix 2017:04:25:18:06:30:SJ cbx_stratixii 2017:04:25:18:06:30:SJ cbx_util_mgl 2017:04:25:18:06:30:SJ VERSION_END
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
-- Copyright (C) 2017 Intel Corporation. All rights reserved.
|
6 |
|
|
-- Your use of Intel Corporation's design tools, logic functions
|
7 |
|
|
-- and other software and tools, and its AMPP partner logic
|
8 |
|
|
-- functions, and any output files from any of the foregoing
|
9 |
|
|
-- (including device programming or simulation files), and any
|
10 |
|
|
-- associated documentation or information are expressly subject
|
11 |
|
|
-- to the terms and conditions of the Intel Program License
|
12 |
|
|
-- Subscription Agreement, the Intel Quartus Prime License Agreement,
|
13 |
|
|
-- the Intel MegaCore Function License Agreement, or other
|
14 |
|
|
-- applicable license agreement, including, without limitation,
|
15 |
|
|
-- that your use is for the sole purpose of programming logic
|
16 |
|
|
-- devices manufactured by Intel and sold by Intel or its
|
17 |
|
|
-- authorized distributors. Please refer to the applicable
|
18 |
|
|
-- agreement for further details.
|
19 |
|
|
|
20 |
|
|
|
21 |
|
|
FUNCTION cycloneive_mac_mult (aclr, clk, dataa[dataa_width-1..0], datab[datab_width-1..0], ena, signa, signb)
|
22 |
|
|
WITH ( dataa_clock, dataa_width, datab_clock, datab_width, signa_clock, signb_clock)
|
23 |
|
|
RETURNS ( dataout[dataa_width+datab_width-1..0]);
|
24 |
|
|
FUNCTION cycloneive_mac_out (aclr, clk, dataa[dataa_width-1..0], ena)
|
25 |
|
|
WITH ( dataa_width = 0, output_clock)
|
26 |
|
|
RETURNS ( dataout[dataa_width-1..0]);
|
27 |
|
|
|
28 |
|
|
--synthesis_resources = dsp_9bit 2
|
29 |
|
|
SUBDESIGN mult_f6p
|
30 |
|
|
(
|
31 |
|
|
clock : input;
|
32 |
|
|
dataa[15..0] : input;
|
33 |
|
|
datab[15..0] : input;
|
34 |
|
|
result[15..0] : output;
|
35 |
|
|
)
|
36 |
|
|
VARIABLE
|
37 |
|
|
mac_mult1 : cycloneive_mac_mult
|
38 |
|
|
WITH (
|
39 |
|
|
dataa_clock = "none",
|
40 |
|
|
dataa_width = 16,
|
41 |
|
|
datab_clock = "none",
|
42 |
|
|
datab_width = 16,
|
43 |
|
|
signa_clock = "none",
|
44 |
|
|
signb_clock = "none"
|
45 |
|
|
);
|
46 |
|
|
mac_out2 : cycloneive_mac_out
|
47 |
|
|
WITH (
|
48 |
|
|
dataa_width = 32,
|
49 |
|
|
output_clock = "0"
|
50 |
|
|
);
|
51 |
|
|
aclr : NODE;
|
52 |
|
|
clken : NODE;
|
53 |
|
|
|
54 |
|
|
BEGIN
|
55 |
|
|
mac_mult1.dataa[] = ( dataa[]);
|
56 |
|
|
mac_mult1.datab[] = ( datab[]);
|
57 |
|
|
mac_mult1.signa = B"1";
|
58 |
|
|
mac_mult1.signb = B"1";
|
59 |
|
|
mac_out2.aclr = aclr;
|
60 |
|
|
mac_out2.clk = clock;
|
61 |
|
|
mac_out2.dataa[] = mac_mult1.dataout[];
|
62 |
|
|
mac_out2.ena = clken;
|
63 |
|
|
aclr = GND;
|
64 |
|
|
clken = VCC;
|
65 |
|
|
result[15..0] = mac_out2.dataout[31..16];
|
66 |
|
|
END;
|
67 |
|
|
--VALID FILE
|