Skip to content
Snippets Groups Projects
Commit 5ae46690 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

End with WAIT to avoid Warning: (vcom-1090) Possible infinite loop: Process...

End with WAIT to avoid Warning: (vcom-1090) Possible infinite loop: Process contains no WAIT statement.
parent 0ead0b22
No related branches found
No related tags found
1 merge request!289Rename c_sdp_W_fsub_wg into c_sdp_W_local_oscillator. Use...
...@@ -79,6 +79,9 @@ BEGIN ...@@ -79,6 +79,9 @@ BEGIN
src_in.ready <= '1'; src_in.ready <= '1';
proc_common_wait_until_evt(clk, src_out.eop); proc_common_wait_until_evt(clk, src_out.eop);
tb_end <= '1'; tb_end <= '1';
-- End with WAIT to avoid Warning: (vcom-1090) Possible infinite loop:
-- Process contains no WAIT statement.
WAIT;
END PROCESS; END PROCESS;
dut: ENTITY work.nw_arp_request dut: ENTITY work.nw_arp_request
......
...@@ -186,6 +186,9 @@ BEGIN ...@@ -186,6 +186,9 @@ BEGIN
proc_common_wait_until_evt(clk, nw_ping_response_src_out.eop); proc_common_wait_until_evt(clk, nw_ping_response_src_out.eop);
END LOOP; END LOOP;
tb_end <= '1'; tb_end <= '1';
-- End with WAIT to avoid Warning: (vcom-1090) Possible infinite loop:
-- Process contains no WAIT statement.
WAIT;
END PROCESS; END PROCESS;
nw_ping_response_src_in.xon <= '1'; nw_ping_response_src_in.xon <= '1';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment