M
MarcoŠ
Guest
Hi! I'm an engineer student and having some problems with xilinx ise webpack
4.2
I have to realize an interface module which waits for a signal from a
transmitter module before transferring the data from a bidirectional bus to
the tx module...the problem is that i couldn't synthesize it because the
compiler reports the following error:
ERROR:Xst:850 - "UART_control.v", line 42: Unsupported Wait Statement.
Here is the code:
always @(negedge NRD)
begin
wait (oktx);
i_readout <= 0;
wait (oktx);
i_res <= 1;
i_readout <= 1;
end
How could i realize the same function without the wait statement? I tried
with a while construct without success...
Thanks in advance to all
4.2
I have to realize an interface module which waits for a signal from a
transmitter module before transferring the data from a bidirectional bus to
the tx module...the problem is that i couldn't synthesize it because the
compiler reports the following error:
ERROR:Xst:850 - "UART_control.v", line 42: Unsupported Wait Statement.
Here is the code:
always @(negedge NRD)
begin
wait (oktx);
i_readout <= 0;
wait (oktx);
i_res <= 1;
i_readout <= 1;
end
How could i realize the same function without the wait statement? I tried
with a while construct without success...
Thanks in advance to all