Forum Discussion
Altera_Forum
Honored Contributor
14 years agoThe original warning message is preceeded by this important line
--- Quote Start --- Info: RAM logic "ram1" is uninferred due to asynchronous read logic --- Quote End --- In my opinion, the analysis is incorrect. Quartus apparently doesn't like the nested if control signals. Try with this logically equivalent construct: if cs = '0' and oe = '0' then
data_o <= ram1(conv_integer(addr));
end if;
if cs = '0' and oe = '1' then
ram1(conv_integer(addr)) <= data_i;
end if;