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 agoSo, try to do this,
clk_process: process begin clk<=NOT clk; wait for 10ns; end process; I think this is the better way to generate a clock signal for test bench. Good luck!!