diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-06-14 19:45:15 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-06-14 19:45:15 -0400 |
commit | 7cd362ca4e9394967f8680593b657b0bdd39d29e (patch) | |
tree | 2e327a5a74fdcc292484069f547a89cc44ecb810 /configs | |
parent | 38ecb6a2ee7fbe4e24f83e50f8ca95b04197e0f9 (diff) | |
download | gem5-7cd362ca4e9394967f8680593b657b0bdd39d29e.tar.xz |
add cycle to exit message
src/arch/mips/isa/formats/trap.isa:
Take out fix that tried to fix trap
instruction disassembly. It forces bad
compile ..
configs/test/test.py:
add 'cycle' to exit message
--HG--
extra : convert_revision : 568877797fd2806416b4cbb388cc3f7eb2492627
Diffstat (limited to 'configs')
-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 2ece9e675..9ab5f6e00 100644 --- a/configs/test/test.py +++ b/configs/test/test.py @@ -50,5 +50,5 @@ m5.instantiate(root) # simulate until program terminates exit_event = m5.simulate() -print 'Exiting @', m5.curTick(), 'because', exit_event.getCause() +print 'Exiting @ cycle', m5.curTick(), 'because', exit_event.getCause() |