flow: EndpointHook -> EndpointSimHook
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 3 Aug 2012 10:58:41 +0000 (12:58 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 3 Aug 2012 10:58:41 +0000 (12:58 +0200)
migen/flow/hooks.py
migen/flow/perftools.py

index 1afa1868f918763f4b9ce51fc7a5753832f03eca..9165e641877444ceac6e2804e3828aeb284f1ffb 100644 (file)
@@ -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
        
index 0deca3079eb60e1d8e3f7b1a0e46a532e3c9eee3..aa13f999204e72688676d99534c644b6891a59ec 100644 (file)
@@ -1,6 +1,6 @@
 from migen.flow.hooks import *
 
-class EndpointReporter(EndpointHook):
+class EndpointReporter(EndpointSimHook):
        def __init__(self, endpoint):
                super().__init__(endpoint)
                self.reset()