![]() |
|
|
|
#1 |
|
I am new to VHDL.
this is the process block I have written in vhdl... tbclock : process begin tb_clock <= '0'; wait for 50 ns; tb_clock <= '1'; wait for 50 ns; end process tbclock; but when compiled it gives me an error. "wait statement must contain condition clause with until keyword"... Can anyone help me in fixing the error? anuaravind |
|
|
|
|
|
|
#2 | |
|
Junior Member
Join Date: Oct 2006
Posts: 8
|
Quote:
Well, it should work when you want to simulate it, but this code can not synthesized since you are using wait for. because some VHDL statements can not be synthesized but they can be used in simulation part "testbench". hope that would help you lightofspace |
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to execute an external software from VHDL? And how to interface VHDL with JAVA? | becool_nikks | Software | 0 | 03-06-2009 07:08 PM |
| Vending machine using VHDL | arie | General Help Related Topics | 0 | 03-05-2009 05:45 AM |
| reading mp3 file in binary format in vhdl | latheesh | General Help Related Topics | 0 | 02-05-2008 05:40 AM |
| Help on auto conversion from Matlab to vhdl on filter design | hardheart | Hardware | 0 | 12-07-2007 09:19 AM |
| ARRAY(n DOWNTO 0) OF STD_LOGIC_VECTOR(m DOWNTO 0) - VHDL | freitass | Hardware | 0 | 11-01-2007 03:44 PM |