summaryrefslogtreecommitdiff
path: root/configs/splash2/run.py
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-11-13 16:09:47 -0500
committerRon Dreslinski <rdreslin@umich.edu>2006-11-13 16:09:47 -0500
commit023fccff0e7f6e2be144c56567b58845cc7383f5 (patch)
treeeae163d189074c9e55bcdb55713e77cb4c2750e3 /configs/splash2/run.py
parentafed455e777348596db9ff9786d6dae03a956c89 (diff)
downloadgem5-023fccff0e7f6e2be144c56567b58845cc7383f5.tar.xz
Update splash2 config files
configs/splash2/run.py: Fix MaxTick for splash configs configs/splash2/cluster.py: Add a config that allows clusters of CPU's to be attached to a single L1 --HG-- extra : convert_revision : 1bb0a0c5f4889316940a9858be90ae2eaa849f1a
Diffstat (limited to 'configs/splash2/run.py')
-rw-r--r--configs/splash2/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/splash2/run.py b/configs/splash2/run.py
index 7d56cb830..b162e0cc7 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(1000000000000)
+ exit_event = m5.simulate(m5.MaxTick)
print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()