Altera_Forum
Honored Contributor
13 years agocompiling error
I have the following error when compiling with quartus II 32-bit version 1.1 build 216 11/23/2011.
Error (10327): VHDL error at test_pld.VHD(354): can't determine definition of operator ""+"" -- found 0 possible definitions The code is below U9: process(serialclk, data, count_b)--74HC590 begin if (data = '0') then count_b <= "00000"; elsif (serialclk'event and serialclk = '1') then count_b <= count_b + 1; << this is where the compiler error. end if; end process;