Forum Discussion
Altera_Forum
Honored Contributor
13 years agoWait statement error!!!
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 WI...
Altera_Forum
Honored Contributor
13 years agoYou forgot semi colons in your code.
How about posting the real code, and the real errors next time. And Shikata: your code would not work if you forgot to initialise clk - the OP's code will.