Remove redundant 'artiq.gateware' from module names
This commit is contained in:
parent
a788c17e3d
commit
1a83778590
25
README.md
25
README.md
|
@ -5,19 +5,18 @@ Formally verified implementation of the ARTIQ RTIO core in nMigen
|
||||||
## Progress
|
## Progress
|
||||||
|
|
||||||
- [ ] Implement the core in nMigen
|
- [ ] Implement the core in nMigen
|
||||||
- - [ ] `artiq.gateware.rtio.core`
|
- - [ ] `rtio.core`
|
||||||
- - [ ] `misoc.interconnect.csr`
|
- - [ ] `rtio.cri`
|
||||||
- - [ ] `artiq.gateware.rtio.cri`
|
- - [x] `rtio.rtlink`
|
||||||
- - [x] `artiq.gateware.rtio.rtlink`
|
- - [x] `rtio.channel`
|
||||||
- - [x] `artiq.gateware.rtio.channel`
|
- - [ ] `rtio.sed.core`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.core`
|
- - [x] `rtio.sed.layouts`
|
||||||
- - [x] `artiq.gateware.rtio.sed.layouts`
|
- - [ ] `rtio.sed.lane_distributor`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.lane_distributor`
|
- - [ ] `rtio.sed.fifos`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.fifos`
|
- - [ ] `rtio.sed.gates`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.gates`
|
- - [ ] `rtio.sed.output_driver`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.output_driver`
|
- - [ ] `rtio.sed.output_network`
|
||||||
- - [ ] `artiq.gateware.rtio.sed.output_network`
|
- - [ ] `rtio.input_collector`
|
||||||
- - [ ] `artiq.gateware.rtio.input_collector`
|
|
||||||
- [ ] Add suitable assertions for verification (BMC / unbounded proof?)
|
- [ ] Add suitable assertions for verification (BMC / unbounded proof?)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from artiq.gateware.rtio import rtlink
|
from rtio import rtlink
|
||||||
|
|
||||||
|
|
||||||
class Channel:
|
class Channel:
|
|
@ -2,7 +2,7 @@ from nmigen import *
|
||||||
from nmigen.utils import *
|
from nmigen.utils import *
|
||||||
from nmigen.hdl.rec import *
|
from nmigen.hdl.rec import *
|
||||||
|
|
||||||
from artiq.gateware.rtio import rtlink
|
from rtio import rtlink
|
||||||
|
|
||||||
|
|
||||||
def fifo_payload(channels):
|
def fifo_payload(channels):
|
Loading…
Reference in New Issue