diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/memtest.py | 2 | ||||
-rw-r--r-- | configs/splash2/run.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/memtest.py b/configs/example/memtest.py index 141ecfd8e..e42a92ba1 100644 --- a/configs/example/memtest.py +++ b/configs/example/memtest.py @@ -133,6 +133,6 @@ m5.instantiate(root) if options.maxtick: exit_event = m5.simulate(options.maxtick) else: - exit_event = m5.simulate() + exit_event = m5.simulate(10000000000000) print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() diff --git a/configs/splash2/run.py b/configs/splash2/run.py index 93b166d77..7d56cb830 100644 --- a/configs/splash2/run.py +++ b/configs/splash2/run.py @@ -262,7 +262,7 @@ m5.instantiate(root) if options.maxtick: exit_event = m5.simulate(options.maxtick) else: - exit_event = m5.simulate() + exit_event = m5.simulate(1000000000000) print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() |