mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-26 03:38:25 +08:00
gateware/rt2wb: only input when active
This commit is contained in:
parent
6903a1d88a
commit
1b08e65fa1
@ -39,6 +39,6 @@ class RT2WB(Module):
|
|||||||
wb.cyc.eq(active),
|
wb.cyc.eq(active),
|
||||||
wb.stb.eq(active),
|
wb.stb.eq(active),
|
||||||
|
|
||||||
self.rtlink.i.stb.eq(wb.ack & ~wb.we),
|
self.rtlink.i.stb.eq(active & wb.ack & ~wb.we),
|
||||||
self.rtlink.i.data.eq(wb.dat_r)
|
self.rtlink.i.data.eq(wb.dat_r)
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user