mahalakshmi r
Newbie level 6
Code dot - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 process (LP1,LP2) begin if (LP1="00" and LP2="ZZ") then addout <= "00"; elsif (LP1="01" and LP2="ZZ") then addout <= "01"; elsif (LP1="ZZ" and LP2="10") then addout <= "10"; elsif (LP1="ZZ" and LP2="11") then addout <= "11"; elsif (LP1="00" and LP2="10") then addout <= "00"; else addout <= "ZZ"; end if; end process;
above code successfully run in xilinx software and show no error in it and i got output for it... but the same program not run successfully in quartus software, it show that 'if statement' have error but i can't found any error in it if anyone know it please reply this post and its important for me......
Last edited by a moderator: