Forum Discussion
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 ""+"...
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- You are mixing types. VHDL cares about the type (integer/vector). Try: count_b <= count_b + '1'; It should fix it. --- Quote End --- that wont work with standard VHDL, assuming count_b is a std_logic_vector, because you cannot do arithmatic with std_logic_vectors. You need to include the numeric_std library and make count_b an unsigned, as bertulus suggested to make the origional code work. But this is all speculation, because we havent seen all of the OPs code.