litescope/core/port: fix EdgeDetector CSRs names

This commit is contained in:
Florent Kermarrec 2015-08-24 19:40:53 +02:00
parent fd31e6ae61
commit 27b1dd7d9e
1 changed files with 6 additions and 6 deletions

View File

@ -99,14 +99,14 @@ class LiteScopeEdgeDetectorUnit(Module):
class LiteScopeEdgeDetector(LiteScopeEdgeDetectorUnit, AutoCSR):
def __init__(self, dw):
LiteScopeEdgeDetectorUnit.__init__(self, dw)
self._rising = CSRStorage(dw)
self._falling = CSRStorage(dw)
self._both = CSRStorage(dw)
self._rising_mask = CSRStorage(dw)
self._falling_mask = CSRStorage(dw)
self._both_mask = CSRStorage(dw)
# # #
self.comb += [
self.rising_mask.eq(self._rising.storage),
self.falling_mask.eq(self._falling.storage),
self.both_mask.eq(self._both.storage)
self.rising_mask.eq(self._rising_mask.storage),
self.falling_mask.eq(self._falling_mask.storage),
self.both_mask.eq(self._both_mask.storage)
]