Forum Discussion
Altera_Forum
Honored Contributor
13 years agoThe only way to have the component ROM compiled correctly is to use:
subtype word_t is std_logic_vector(7 downto 0);
type memory_t is array(127 downto 0) of word_t;
or
subtype word_t is std_logic_vector(7 downto 0);
type memory_t is array(255 downto 0) of word_t;
In all other cases it is not able to create a memory (Memory bits = 0 and M4Ks = 0) and gives the warning "No clocks defined in design". Is this normal ?