Skip to content

Commit f5ce2f8

Browse files
committed
fix(rx_mac_lite): corrects VER model according to changes in RX MAC Lite DUT
1 parent 54021ca commit f5ce2f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

comp/nic/mac_lite/rx_mac_lite/top/umii/ver/tbench/scoreboard.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Model;
5252
end
5353
end
5454

55-
if (frame.data[0][0] == 1)
55+
if (frame.data[0][0] == 1 && is_mac_bcast == 0)
5656
is_mac_mcast = 1;
5757

5858
// Check available MACs

comp/nic/mac_lite/rx_mac_lite/ver/tbench/scoreboard.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Model;
5151
end
5252
end
5353

54-
if (frame.data[0][0] == 1)
54+
if (frame.data[0][0] == 1 && is_mac_bcast == 0)
5555
is_mac_mcast = 1;
5656

5757
// Check available MACs

0 commit comments

Comments
 (0)