Skip to content

Commit 4f0e203

Browse files
xmarus09jakubcabal
authored andcommitted
fix(nic): fix the wrong signal assignment in the STAT UNIT subcomponent of RX MAC
Additionally, it removes the extra MCAST validation.
1 parent 3c1e333 commit 4f0e203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

comp/nic/mac_lite/rx_mac_lite/comp/stat_unit/rx_stat_unit.vhd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ begin
237237
s_reg_in_rfc_below_min <= IN_LEN_BELOW_MIN;
238238
s_reg_in_rfc_over_mtu <= IN_LEN_OVER_MTU;
239239
s_reg_in_rfc_mac_err <= IN_MAC_ERROR;
240-
s_reg_in_rfc_mac_mcast <= IN_MAC_BCAST;
241-
s_reg_in_rfc_mac_bcast <= IN_MAC_MCAST and not IN_MAC_BCAST;
240+
s_reg_in_rfc_mac_mcast <= IN_MAC_MCAST;
241+
s_reg_in_rfc_mac_bcast <= IN_MAC_BCAST;
242242
s_reg_in_rfc_fragment <= IN_CRC_ERROR and s_frame_below_64;
243243
s_reg_in_rfc_jabber <= IN_CRC_ERROR and s_frame_over_1518;
244244
s_reg_in_frame_len <= s_fixed_frame_len;

0 commit comments

Comments
 (0)