Fix keyword argument issue for read_port in rtio.cri
This commit is contained in:
parent
b4ec588630
commit
ec957ad411
|
@ -6,7 +6,7 @@ Formally verified implementation of the ARTIQ RTIO core in nMigen
|
||||||
|
|
||||||
- Devise a suitable migration strategy for `artiq.gateware.rtio` from Migen to nMigen
|
- Devise a suitable migration strategy for `artiq.gateware.rtio` from Migen to nMigen
|
||||||
- [x] Implement the core in nMigen
|
- [x] Implement the core in nMigen
|
||||||
- - [ ] `rtio.cri` (`Interface` and `CRIDecoder` only)
|
- - [x] `rtio.cri` (`Interface` and `CRIDecoder` only)
|
||||||
- - [x] `rtio.rtlink`
|
- - [x] `rtio.rtlink`
|
||||||
- - [x] `rtio.sed.layouts`
|
- - [x] `rtio.sed.layouts`
|
||||||
- - [x] `rtio.sed.output_network`
|
- - [x] `rtio.sed.output_network`
|
||||||
|
|
|
@ -89,7 +89,7 @@ class CRIDecoder(Elaboratable):
|
||||||
if mode == "async":
|
if mode == "async":
|
||||||
rtp_decoder = routing_table.read_port()
|
rtp_decoder = routing_table.read_port()
|
||||||
elif mode == "sync":
|
elif mode == "sync":
|
||||||
rtp_decoder = routing_table.read_port(clock_domain="rtio") # FIXME
|
rtp_decoder = routing_table.read_port(domain="rtio")
|
||||||
else:
|
else:
|
||||||
raise ValueError
|
raise ValueError
|
||||||
m.submodules += rtp_decoder
|
m.submodules += rtp_decoder
|
||||||
|
|
Loading…
Reference in New Issue