mirror of
https://github.com/enjoy-digital/litedram.git
synced 2025-01-04 09:52:25 -05:00
frontend/dma/LiteDRAMDMAWriter: Set b.ready to 1 on AXI port.
Avoid having to do it externally.
This commit is contained in:
parent
78ff236ca7
commit
81d318aa46
1 changed files with 3 additions and 0 deletions
|
@ -221,6 +221,9 @@ class LiteDRAMDMAWriter(Module, AutoCSR):
|
|||
wdata.data.eq(fifo.source.data)
|
||||
]
|
||||
|
||||
if is_axi:
|
||||
self.comb += port.b.ready.eq(1)
|
||||
|
||||
if with_csr:
|
||||
self.add_csr()
|
||||
|
||||
|
|
Loading…
Reference in a new issue