我对 VHDL 中的 if 语句有疑问,请参见下面的示例;-)
signal SEQ : bit_vector(5 downto 0);
signal output: bit;
-------
if(SEQ = "000001") and (CNT_RESULT = "111111") then
output<= '1';
CNT_RESET <= '0';
else output<='0';
end if;
我得到:if 语句是非法的,并且“输出”有多个来源。有任何想法吗