mac/crc/LiteEthMACCRC32Inserter: Switch crc_packet/last_be to reset_less for timings.
This commit is contained in:
parent
b7443f5fd3
commit
3e8103996f
|
@ -158,8 +158,8 @@ class LiteEthMACCRC32Inserter(LiteXModule):
|
||||||
assert data_width in [8, 16, 32, 64]
|
assert data_width in [8, 16, 32, 64]
|
||||||
|
|
||||||
# Signals.
|
# Signals.
|
||||||
crc_packet = Signal(32)
|
crc_packet = Signal(32, reset_less=True)
|
||||||
last_be = Signal(data_width//8)
|
last_be = Signal(data_width//8, reset_less=True)
|
||||||
|
|
||||||
# CRC32 Generator.
|
# CRC32 Generator.
|
||||||
self.crc = crc = LiteEthMACCRC32(data_width)
|
self.crc = crc = LiteEthMACCRC32(data_width)
|
||||||
|
|
Loading…
Reference in New Issue