litex/litescope/frontend/io.py

10 lines
217 B
Python
Raw Normal View History

from litescope.common import *
2012-09-12 16:19:42 -04:00
class LiteScopeIO(Module, AutoCSR):
2013-09-21 07:04:07 -04:00
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