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