Forum Discussion
Altera_Forum
Honored Contributor
12 years agoWhere is the declaration for MY_ROM?
Also, you should not put a range in the select if you don't need it. assign RAM_2048_12BIT[11:0] = my_rom[11:0]; When you put in a range, it makes me thing you are only selecting part of the memory Without the range it says your intent is to pass the whole element. assign RAM_2048_12BIT = my_rom;