Forum Discussion
Altera_Forum
Honored Contributor
13 years agoTried again, this time using the Wizard. Accepts the .hex file name and that part is fine.
Unfortuntely, the VHDL created by the Wizard for altsyncram uses type std_logic_vector for the address, whereas the template version uses the (far nice) natural type. Shame :( So, working, but the VHDL now has lots of things like
tmpIP := tmpIP + 1; -- tmpIP is a natural
IP <= std_LOGIC_VECTOR(to_unsigned(tmpIP, IP'length)); -- IP is a std_logic_vector, as per the altsyncram "address"