litex/miscope/miio.py

11 lines
251 B
Python
Raw Normal View History

2012-09-12 16:19:42 -04:00
from migen.fhdl.structure import *
from migen.bank.description import *
2013-09-21 07:04:07 -04:00
class MiIo(Module, AutoCSR):
def __init__(self, width):
2014-05-20 03:02:35 -04:00
self._r_i = CSRStatus(width)
self._r_o = CSRStorage(width)
2013-09-21 07:04:07 -04:00
2014-09-24 16:09:11 -04:00
self.i = self._r_i.status
self.o = self._r_o.storage