case (<3-bit select>) is
when "000" =>
;
when "001" =>
;
when "010" =>
;
when "011" =>
;
when "100" =>
;
when "101" =>
;
when "110" =>
;
when "111" =>
;
when others =>
out<=out;
end case;
你的out是几位的?根据你的具体情况修改一下,我把你的out1~out5认为是一组了
但我有几点不明白你的设计:001的时候你需要out1,out3,out4,out5为什么状态呢?保持原态还是什么? |