mac/crc/LiteEthMACCRC32Inserter: Switch crc_packet/last_be to reset_less for timings.

This commit is contained in:
Florent Kermarrec 2024-04-04 16:17:36 +02:00
parent b7443f5fd3
commit 3e8103996f
1 changed files with 2 additions and 2 deletions

View File

@ -158,8 +158,8 @@ class LiteEthMACCRC32Inserter(LiteXModule):
assert data_width in [8, 16, 32, 64]
# Signals.
crc_packet = Signal(32)
last_be = Signal(data_width//8)
crc_packet = Signal(32, reset_less=True)
last_be = Signal(data_width//8, reset_less=True)
# CRC32 Generator.
self.crc = crc = LiteEthMACCRC32(data_width)