Guest
I'm having a problem with a VHDL signal I hadn't expected. Simulator is Modelsim.
When I declare a signal
signal A : unsigned(31 downto 0);
or
signal A : std_logic_vector(31 downto 0);
I get unexpected results from the unsigned case specifically when I try to set the 31st bit. I don't expect there would be a difference but I could be wrong.
I am using numeric_std
Thanks for any insight.
When I declare a signal
signal A : unsigned(31 downto 0);
or
signal A : std_logic_vector(31 downto 0);
I get unexpected results from the unsigned case specifically when I try to set the 31st bit. I don't expect there would be a difference but I could be wrong.
I am using numeric_std
Thanks for any insight.