mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
sim: support execution of nested statement lists
This commit is contained in:
parent
48d22a7588
commit
3b7f1264f1
1 changed files with 2 additions and 0 deletions
|
@ -193,6 +193,8 @@ class Evaluator:
|
|||
return
|
||||
if "default" in s.cases:
|
||||
self.execute(s.cases["default"])
|
||||
elif isinstance(s, list):
|
||||
execute(s)
|
||||
else:
|
||||
raise NotImplementedError
|
||||
|
||||
|
|
Loading…
Reference in a new issue