when i am using the following code
clk_process: process
begin
clk<='0'
wait for 10 ns;---ERROR COMING HERE
clk<='1'
wait for 10ns;
end process
ERROR IS : WAIT SHOULD COME WITH UNTIL CLAUSE......
clk_process: process
begin
clk<='0'
wait for 10 ns;---ERROR COMING HERE
clk<='1'
wait for 10ns;
end process
ERROR IS : WAIT SHOULD COME WITH UNTIL CLAUSE......