mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/interconnect/axi: Fix beat_offset dimension (was limiting bursts to 2KB instead of 4KB).
This commit is contained in:
parent
f0e3b3f3ea
commit
af5167c7f0
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ class AXIBurst2Beat(Module):
|
||||||
|
|
||||||
beat_count = Signal(8)
|
beat_count = Signal(8)
|
||||||
beat_size = Signal(8 + 4)
|
beat_size = Signal(8 + 4)
|
||||||
beat_offset = Signal((8 + 4, True))
|
beat_offset = Signal((8 + 4 + 1, True))
|
||||||
beat_wrap = Signal(8 + 4)
|
beat_wrap = Signal(8 + 4)
|
||||||
|
|
||||||
# Compute parameters
|
# Compute parameters
|
||||||
|
|
Loading…
Reference in a new issue