Altera_Forum
Honored Contributor
17 years agovhdl syntax error
hello,
here is part of my vhdl codes. ce : in std_logic; addr : in std_logic_vector (15 downto 0); process(ce, addr) variable gpio_enable : std_logic ; begin case ce and addr(7 downto 5) is --line 58 when "001" => gpio_enable <= '1'; when others => gpio_enable <='0'; end case; end process; when i compile th design, i got an error : Error (10327): VHDL error at wb_io.vhd(58): can't determine definition of operator ""and"" -- found 0 possible definitions Can anyone help me ??