Forum Discussion
Altera_Forum
Honored Contributor
13 years agoCase with don't care does work in Quartus 12. The warning suggests that you forget to write case? instead of case.
case? request is
when "1---" => grant <= "1000";
when "01--" => grant <= "0100";
when "001-" => grant <= "0010";
when "0001" => grant <= "0001";
when others => grant <= "0000";
end case?;