06-20-2016 05:45 PM
hello,
Can I not declare a port as real data type in the entity declaration of the code snippet below? I am getting error while trying to synthesize my design. Pls help.
The error says: Signal <a> of type real is not supported
entity twoD_array_opr is
Port ( a : in real;
b : in real;
clk:in std_logic;
c : out real);
end twoD_array_opr;
06-21-2016 12:27 AM
06-21-2016 03:34 AM
Yes I have used the use IEEE.MATH_REAL.ALL; library..but still the error is coming up.
06-27-2016 02:47 AM
Real data types are not synthesis-able..I solved my problem..thanks...