Skip to content

Commit 2b85f96

Browse files
committed
Updated verification targets in the examples
1 parent d027ffc commit 2b85f96

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/thread_stream_axi_stream_fifo/test_thread_stream_axi_stream_fifo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -740,10 +740,10 @@
740740
if(_maxi_cond_0_1) begin
741741
maxi_arvalid <= 0;
742742
end
743-
if(maxi_awvalid && maxi_awready && !(maxi_bvalid && maxi_bready)) begin
743+
if(maxi_wlast && maxi_wvalid && maxi_wready && !(maxi_bvalid && maxi_bready)) begin
744744
outstanding_wreq_count_0 <= outstanding_wreq_count_0 + 1;
745745
end
746-
if(!(maxi_awvalid && maxi_awready) && (maxi_bvalid && maxi_bready) && (outstanding_wreq_count_0 > 0)) begin
746+
if(!(maxi_wlast && maxi_wvalid && maxi_wready) && (maxi_bvalid && maxi_bready) && (outstanding_wreq_count_0 > 0)) begin
747747
outstanding_wreq_count_0 <= outstanding_wreq_count_0 - 1;
748748
end
749749
_maxi_read_start <= 0;

examples/thread_stream_axi_stream_fifo_ipxact/test_thread_stream_axi_stream_fifo_ipxact.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -740,10 +740,10 @@
740740
if(_maxi_cond_0_1) begin
741741
maxi_arvalid <= 0;
742742
end
743-
if(maxi_awvalid && maxi_awready && !(maxi_bvalid && maxi_bready)) begin
743+
if(maxi_wlast && maxi_wvalid && maxi_wready && !(maxi_bvalid && maxi_bready)) begin
744744
outstanding_wreq_count_0 <= outstanding_wreq_count_0 + 1;
745745
end
746-
if(!(maxi_awvalid && maxi_awready) && (maxi_bvalid && maxi_bready) && (outstanding_wreq_count_0 > 0)) begin
746+
if(!(maxi_wlast && maxi_wvalid && maxi_wready) && (maxi_bvalid && maxi_bready) && (outstanding_wreq_count_0 > 0)) begin
747747
outstanding_wreq_count_0 <= outstanding_wreq_count_0 - 1;
748748
end
749749
_maxi_read_start <= 0;

0 commit comments

Comments
 (0)