litex/litescope/frontend/io.py

11 lines
223 B
Python
Raw Normal View History

from litescope.common import *
2012-09-12 16:19:42 -04:00
class LiteScopeIO(Module, AutoCSR):
2015-01-27 15:08:24 -05:00
def __init__(self, dw):
self.dw = dw
self._r_i = CSRStatus(dw)
self._r_o = CSRStorage(dw)
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