Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- Case 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?; --- Quote End --- Ok I will try that out. The only issue is that I am using Quartus 11.1 currently, but I will figure out soon if it matters.