From: Sebastien Bourdeauducq Date: Thu, 15 Oct 2015 05:53:04 +0000 (+0800) Subject: sim: support execution of nested statement lists (typo) X-Git-Tag: 24jan2021_ls180~2099^2~3^2~21 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4acb7bc662e13ed6ff611e26b3d070d6ed934b78;p=litex.git sim: support execution of nested statement lists (typo) --- diff --git a/migen/sim/core.py b/migen/sim/core.py index c31fa086..0de231f2 100644 --- a/migen/sim/core.py +++ b/migen/sim/core.py @@ -194,7 +194,7 @@ class Evaluator: if "default" in s.cases: self.execute(s.cases["default"]) elif isinstance(s, list): - execute(s) + self.execute(s) else: raise NotImplementedError