2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-02-02 22:00:20 +08:00

dma: report last write to FIFO

This commit is contained in:
occheung 2025-01-10 16:09:39 +08:00
parent 41933b8849
commit 585b9875eb

View File

@ -66,6 +66,7 @@ class WishboneReader(Module):
self.source.stb.eq(bus.ack),
self.source.data.eq(convert_signal(bus.dat_r, cpu_dw//8)),
self.source.last.eq(self.sink.eop | last),
self.source.eop.eq(self.sink.eop),
]