Skip to content

Commit 4d1e169

Browse files
committed
Merge branch 'marushchenko-fix-uvm-app-change_ipv_conf_data_type' into 'devel'
fix(uvm app): change data type of the conf_ipv6 and conf_ipv4 See merge request ndk/ndk-fpga!207
2 parents 0103c17 + a157237 commit 4d1e169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/comp/app/app_uvm/env/sequence.sv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ class sequence_main#(
4343
protected logic [ETH_STREAMS-1:0] event_eth_rx_end;
4444
protected logic [DMA_STREAMS-1:0] event_dma_rx_end;
4545
rand time time_start;
46-
logic [128-1:0] conf_ipv6[];
47-
logic [32-1:0] conf_ipv4[];
46+
bit [128-1:0] conf_ipv6[];
47+
bit [32-1:0] conf_ipv4[];
4848
int unsigned min_random_count;
4949
int unsigned max_random_count;
5050
int unsigned pkt_size_min;

0 commit comments

Comments
 (0)