mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
11 lines
264 B
Python
11 lines
264 B
Python
from misoclib.tools.litescope.common import *
|
|
|
|
|
|
class LiteScopeIO(Module, AutoCSR):
|
|
def __init__(self, dw):
|
|
self.dw = dw
|
|
self._i = CSRStatus(dw)
|
|
self._o = CSRStorage(dw)
|
|
|
|
self.i = self._i.status
|
|
self.o = self._o.storage
|