I am facing a problem in VHDL via ModelSim. It is an error in my if statement.
if ((s(0) = c(0)) AND (NOT(x1(0)))) THEN
I:= (others => '0');
end if;
Here is my if statement and the error is: No feasible entries for infix operator "and". But, after I tried to check the program I realized that the problem is with using (not gate). Maybe, there is another way of using it in vhdl. Could anyone help?? Thanks