mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
[fix] prevent Vivado from inferring DSP48 in AXIBurst2Beat
This commit is contained in:
parent
6d5fddc160
commit
db4c609a33
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class AXIBurst2Beat(Module):
|
||||||
|
|
||||||
# compute parameters
|
# compute parameters
|
||||||
self.comb += beat_size.eq(1 << ax_burst.size)
|
self.comb += beat_size.eq(1 << ax_burst.size)
|
||||||
self.comb += beat_wrap.eq(ax_burst.len*beat_size)
|
self.comb += beat_wrap.eq(ax_burst.len << ax_burst.size)
|
||||||
|
|
||||||
# combinatorial logic
|
# combinatorial logic
|
||||||
self.comb += [
|
self.comb += [
|
||||||
|
|
Loading…
Reference in a new issue