Altera_Forum
Honored Contributor
18 years agousing constant
Hi...
Have a question (hope that not 2 stupid) I defind constant ram1 : std_logic_vector (2 downto 0) :="001"; -- only RAM1 constant ram2 : std_logic_vector (2 downto 0) :="010"; -- only RAM2 constant ram3 : std_logic_vector (2 downto 0) :="100"; -- only RAM3 ram_indication= ram1 or ram2 or ram3.... (gets one of this) I run timing simulation with *.vho and *.sdo and got X00 X01 X11 ........ (instead of my values "001"...) Is there any attribute I didn't use? Its really not easy to cope with timing simulation... Thank you ari