configs/example/fs.py:
authorSteve Reinhardt <stever@eecs.umich.edu>
Mon, 21 Aug 2006 02:28:58 +0000 (19:28 -0700)
committerSteve Reinhardt <stever@eecs.umich.edu>
Mon, 21 Aug 2006 02:28:58 +0000 (19:28 -0700)
Arg to m5.simulate() is a delta, not an absolute curTick value.
I didn't test this change, but I'm not convinced the previous
example was tested either, so I don't feel too badly about it.

configs/example/fs.py:
    Arg to m5.simulate() is a delta, not an absolute curTick value.
    I didn't test this change, but I'm not convinced the previous
    example was tested either, so I don't feel too badly about it.

--HG--
extra : convert_revision : ef7df7b83b3e2b5da02408c674169ccbed75a441

configs/example/fs.py

index 958fc435314edf3a07cdce10041c72f5f07a588e..b26d31040b066e10bf67320c6305242210c909a6 100644 (file)
@@ -106,18 +106,18 @@ else:
 m5.instantiate(root)
 
 if options.maxtick:
-    arg = options.maxtick
+    maxtick = options.maxtick
 elif options.maxtime:
     simtime = int(options.maxtime * root.clock.value)
     print "simulating for: ", simtime
-    arg = simtime
+    maxtick = simtime
 else:
-    arg = -1
+    maxtick = -1
 
-exit_event = m5.simulate(arg)
+exit_event = m5.simulate(maxtick)
 
 while exit_event.getCause() == "checkpoint":
-        m5.checkpoint(root, "cpt.%d")
-        exit_event = m5.simulate(arg)
+    m5.checkpoint(root, "cpt.%d")
+    exit_event = m5.simulate(maxtick - m5.curTick())
 
 print 'Exiting @ cycle', m5.curTick(), 'because', exit_event.getCause()