mirror of https://github.com/m-labs/artiq.git
rtio: use large data register
This commit is contained in:
parent
4fa5c55015
commit
2d62a89143
|
@ -61,7 +61,7 @@ class KernelInitiator(Module, AutoCSR):
|
||||||
self.reset_phy = CSR()
|
self.reset_phy = CSR()
|
||||||
self.chan_sel = CSRStorage(24)
|
self.chan_sel = CSRStorage(24)
|
||||||
|
|
||||||
self.o_data = CSRStorage(32, write_from_dev=True) # XXX -> 512
|
self.o_data = CSRStorage(512, write_from_dev=True)
|
||||||
self.o_address = CSRStorage(16)
|
self.o_address = CSRStorage(16)
|
||||||
self.o_timestamp = CSRStorage(64)
|
self.o_timestamp = CSRStorage(64)
|
||||||
self.o_we = CSR()
|
self.o_we = CSR()
|
||||||
|
|
Loading…
Reference in New Issue