mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
flow: EndpointHook -> EndpointSimHook
This commit is contained in:
parent
30f1e77c18
commit
37fe6d64c3
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ from migen.fhdl.structure import *
|
|||
from migen.flow.actor import *
|
||||
from migen.sim.generic import PureSimulable
|
||||
|
||||
class EndpointHook(PureSimulable):
|
||||
class EndpointSimHook(PureSimulable):
|
||||
def __init__(self, endpoint):
|
||||
self.endpoint = endpoint
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from migen.flow.hooks import *
|
||||
|
||||
class EndpointReporter(EndpointHook):
|
||||
class EndpointReporter(EndpointSimHook):
|
||||
def __init__(self, endpoint):
|
||||
super().__init__(endpoint)
|
||||
self.reset()
|
||||
|
|
Loading…
Reference in a new issue