From: Sebastien Bourdeauducq Date: Tue, 12 Jun 2012 15:52:08 +0000 (+0200) Subject: fix SimActor get_fragment X-Git-Tag: 24jan2021_ls180~2099^2~922 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce9e35b8efe93bd8312fc83836a79b69076b481b;p=litex.git fix SimActor get_fragment --- diff --git a/migen/actorlib/sim.py b/migen/actorlib/sim.py index d3f5a66f..b7901915 100644 --- a/migen/actorlib/sim.py +++ b/migen/actorlib/sim.py @@ -13,7 +13,7 @@ class Token: # # NB: the possibility to push several tokens at once is important to interact # with actors that only accept a group of tokens when all of them are available. -class SimActor(Actor, PureSimulable): +class SimActor(PureSimulable, Actor): def __init__(self, generator, *endpoint_descriptions, **misc): self.generator = generator self.active = set()