Remove redundant 'artiq.gateware' from module names

pull/1/head
Donald Sebastian Leung 2020-09-25 15:10:07 +08:00
parent a788c17e3d
commit 1a83778590
20 changed files with 14 additions and 15 deletions

View File

@ -5,19 +5,18 @@ Formally verified implementation of the ARTIQ RTIO core in nMigen
## Progress
- [ ] Implement the core in nMigen
- - [ ] `artiq.gateware.rtio.core`
- - [ ] `misoc.interconnect.csr`
- - [ ] `artiq.gateware.rtio.cri`
- - [x] `artiq.gateware.rtio.rtlink`
- - [x] `artiq.gateware.rtio.channel`
- - [ ] `artiq.gateware.rtio.sed.core`
- - [x] `artiq.gateware.rtio.sed.layouts`
- - [ ] `artiq.gateware.rtio.sed.lane_distributor`
- - [ ] `artiq.gateware.rtio.sed.fifos`
- - [ ] `artiq.gateware.rtio.sed.gates`
- - [ ] `artiq.gateware.rtio.sed.output_driver`
- - [ ] `artiq.gateware.rtio.sed.output_network`
- - [ ] `artiq.gateware.rtio.input_collector`
- - [ ] `rtio.core`
- - [ ] `rtio.cri`
- - [x] `rtio.rtlink`
- - [x] `rtio.channel`
- - [ ] `rtio.sed.core`
- - [x] `rtio.sed.layouts`
- - [ ] `rtio.sed.lane_distributor`
- - [ ] `rtio.sed.fifos`
- - [ ] `rtio.sed.gates`
- - [ ] `rtio.sed.output_driver`
- - [ ] `rtio.sed.output_network`
- - [ ] `rtio.input_collector`
- [ ] Add suitable assertions for verification (BMC / unbounded proof?)
## License

View File

View File

@ -1,6 +1,6 @@
import warnings
from artiq.gateware.rtio import rtlink
from rtio import rtlink
class Channel:

View File

@ -2,7 +2,7 @@ from nmigen import *
from nmigen.utils import *
from nmigen.hdl.rec import *
from artiq.gateware.rtio import rtlink
from rtio import rtlink
def fifo_payload(channels):