add cycle to exit message
authorKorey Sewell <ksewell@umich.edu>
Wed, 14 Jun 2006 23:45:15 +0000 (19:45 -0400)
committerKorey Sewell <ksewell@umich.edu>
Wed, 14 Jun 2006 23:45:15 +0000 (19:45 -0400)
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

configs/test/test.py
src/arch/mips/isa/formats/trap.isa

index 2ece9e67528cdc22685e5716ef9706947be04fad..9ab5f6e006c6aa7b8abd2a558ef9a64754b514ff 100644 (file)
@@ -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()
 
index 6692e8ef87211f82de8b8c6518a313eccbf81516..8a9c5822a2849f0eb948a71a1b5233f681f66e5a 100644 (file)
@@ -70,11 +70,9 @@ def template TrapExecute {{
 }};
 
 def format Trap(code, *flags) {{
-        warn_code = 'warn(\"'
-        warn_code += 'Trap Exception Handler Is Currently Not Implemented.'
-        warn_code += '\");'
-        code = warn_code + "bool " + code
-
+        code = 'warn(\"'
+        code += 'Trap Exception Handler Is Currently Not Implemented.'
+        code += '\");'
         iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags)
         header_output = BasicDeclare.subst(iop)
         decoder_output = BasicConstructor.subst(iop)