Skip to content

Commit

Permalink
sim: support execution of nested statement lists (typo)
Browse files Browse the repository at this point in the history
sbourdeauducq committed Oct 15, 2015
1 parent 3b7f126 commit 4acb7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migen/sim/core.py
Original file line number Diff line number Diff line change
@@ -194,7 +194,7 @@ def execute(self, statements):
if "default" in s.cases:
self.execute(s.cases["default"])
elif isinstance(s, list):
execute(s)
self.execute(s)
else:
raise NotImplementedError

0 comments on commit 4acb7bc

Please sign in to comment.