From: Sebastien Bourdeauducq Date: Fri, 3 Aug 2012 10:58:41 +0000 (+0200) Subject: flow: EndpointHook -> EndpointSimHook X-Git-Tag: 24jan2021_ls180~2099^2~857 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37fe6d64c369296bd66550c3b987f2e25a43d524;p=litex.git flow: EndpointHook -> EndpointSimHook --- diff --git a/migen/flow/hooks.py b/migen/flow/hooks.py index 1afa1868..9165e641 100644 --- a/migen/flow/hooks.py +++ b/migen/flow/hooks.py @@ -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 diff --git a/migen/flow/perftools.py b/migen/flow/perftools.py index 0deca307..aa13f999 100644 --- a/migen/flow/perftools.py +++ b/migen/flow/perftools.py @@ -1,6 +1,6 @@ from migen.flow.hooks import * -class EndpointReporter(EndpointHook): +class EndpointReporter(EndpointSimHook): def __init__(self, endpoint): super().__init__(endpoint) self.reset()