examples/simple_simulation: fix

This commit is contained in:
Sebastien Bourdeauducq 2022-04-12 15:59:20 +08:00
parent c171deec51
commit 83676927b5
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def main():
dmgr["core"] = devices.Core(dmgr)
for wo in "abcd":
dmgr[wo] = devices.WaveOutput(dmgr, wo)
exp = SimpleSimulation(dmgr)
exp = SimpleSimulation((dmgr, None, None, {}))
exp.run()
if __name__ == "__main__":