mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
10 lines
251 B
Python
10 lines
251 B
Python
from migen.fhdl.structure import *
|
|
from migen.bank.description import *
|
|
|
|
class MiIo(Module, AutoCSR):
|
|
def __init__(self, width):
|
|
self._r_i = CSRStatus(width)
|
|
self._r_o = CSRStorage(width)
|
|
|
|
self.i = self._r_i.status
|
|
self.o = self._r_o.storage
|