Fix keyword argument issue for read_port in rtio.cri

pull/1/head
Donald Sebastian Leung 2020-10-15 13:11:06 +08:00
parent b4ec588630
commit ec957ad411
2 changed files with 2 additions and 2 deletions

View File

@ -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
- [x] Implement the core in nMigen
- - [ ] `rtio.cri` (`Interface` and `CRIDecoder` only)
- - [x] `rtio.cri` (`Interface` and `CRIDecoder` only)
- - [x] `rtio.rtlink`
- - [x] `rtio.sed.layouts`
- - [x] `rtio.sed.output_network`

View File

@ -89,7 +89,7 @@ class CRIDecoder(Elaboratable):
if mode == "async":
rtp_decoder = routing_table.read_port()
elif mode == "sync":
rtp_decoder = routing_table.read_port(clock_domain="rtio") # FIXME
rtp_decoder = routing_table.read_port(domain="rtio")
else:
raise ValueError
m.submodules += rtp_decoder