Altera_Forum
Honored Contributor
12 years agoincomplete sensitivity list check in Quartus II
I wrote some VHDL code with incomplete sensitivity list as following and compile it with Quartus II. But, Quartus II didn't give any warnings on this.
Does anybody know how to make quatus ii to check incomplete sensitivity list and give warnings? Also how to make Modelsim to report the same warnings?p_3: process (iCLK)
begin
if rising_edge(iCLK) then
if mDVAL = '1' then
if iX_Cont(0)='1' and iY_Cont(0)='1' then
rRed <= taps_1;
rGreen <= taps_1_d0;
rBlue <= taps_0_d0;
elsif iX_Cont(0)='0' and iY_Cont(0)='1' then
rRed <= taps_1_d0;
rGreen <= taps_0_d0;
rBlue <= taps_0_d1;
elsif iX_Cont(0)='1' and iY_Cont(0)='0' then
rRed <= taps_1_d0;
rGreen <= taps_0_d0;
rBlue <= taps_0_d1;
elsif iX_Cont(0)='0' and iY_Cont(0)='0' then
rRed <= taps_1_d0;
rGreen <= taps_0_d0;
rBlue <= taps_0_d1;
end if;
end if;
end if;
end process;
end trans;