|
Message
From: Redant Steven<redant@i...>
Date: Thu Jan 29 09:02:10 CET 2004
Subject: FW: [oc] Translation
> My problem is that: > > My SC_CTHREAD have wait_until's of various signals/ports! > > It couldn't put wait_until's of different signals/ports in a > VHDL process! >
You can do that. But you can't mix it with a sensitivity list. In SystemC you have the different wait's AND a sensitivity list. In VHDL it is either a sensitivity list OR waits in the process. E.g. the code below.
process begin
... Wait on a;
...
wait on b;
...
wait on a;
end;
|
 |