diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-06-18 15:58:14 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-06-18 15:58:14 -0400 |
commit | ca25e709077b8407fa378e2e19d273023fa0afa9 (patch) | |
tree | 21cc59c86ae1af415a07299fbd9f134ffacff7bf | |
parent | d21fa52c09754dc32056185b141a2faf33e3bbf6 (diff) | |
download | gem5-ca25e709077b8407fa378e2e19d273023fa0afa9.tar.xz |
use 'tick' instead of 'cycle'
--HG--
extra : convert_revision : e7119d20ef95deab16081743c885979b0fa85548
-rw-r--r-- | configs/test/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/test/test.py b/configs/test/test.py index a570c1a08..48d43cee9 100644 --- a/configs/test/test.py +++ b/configs/test/test.py @@ -55,5 +55,5 @@ if options.maxtick: else: exit_event = m5.simulate() -print 'Exiting @ cycle', m5.curTick(), 'because', exit_event.getCause() +print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() |