Forum Discussion
2 Replies
- Altera_Forum
Honored Contributor
Loads of good info here...
www.synthworks.com/papers/vhdl_math_tricks_mapld_2003.pdf (Hope its OK to post links here, if not I will delete if requested :) Top tip.... Alwyas use the package use ieee.numeric_std.all for all new designs. For integer to std_logic_vector to you need to convert to unsigned (or signed) first signal A_slv : std_logic_vector (7 downto 0) ; signal Unsigned_int : integer range 0 to 255 ; Unsigned_int <= to_integer( unsigned( A_slv )); Good luck - Altera_Forum
Honored Contributor
vernmid thanks alot for your help!!!!!!! rili thanks alot!!! i will try it out!!!