Skip to content

Commit

Permalink
mac/crc/LiteEthMACCRC32Inserter: Switch crc_packet/last_be to reset_l…
Browse files Browse the repository at this point in the history
…ess for timings.
  • Loading branch information
enjoy-digital committed Apr 4, 2024
1 parent b7443f5 commit 3e81039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liteeth/mac/crc.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def __init__(self, description):
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)
Expand Down

0 comments on commit 3e81039

Please sign in to comment.