diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-06-11 14:38:14 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-06-11 14:38:14 -0400 |
commit | 6a0c5b9fad3fa437fbea968f2ddeaad31ea51129 (patch) | |
tree | bf19f848eb6c1f972ee1af7e00d4dcb2919ff9cd /src/arch/mips/isa/formats | |
parent | 6de5d73a999240f92f050393bb10028968275835 (diff) | |
download | gem5-6a0c5b9fad3fa437fbea968f2ddeaad31ea51129.tar.xz |
Edit Fetch DPRINT in simple CPU
src/arch/mips/isa/formats/mt.isa:
change copyright to 2006
src/cpu/simple/base.cc:
Only DPRINT NNPC if we are not using ALPHA
src/cpu/static_inst.hh:
Take Out MIPS Specific functions ...
--HG--
extra : convert_revision : 7a69e80cd1564fa3b778b9dade0e9fe3cef94e64
Diffstat (limited to 'src/arch/mips/isa/formats')
-rw-r--r-- | src/arch/mips/isa/formats/mt.isa | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/arch/mips/isa/formats/mt.isa b/src/arch/mips/isa/formats/mt.isa index 521b01123..96435f8c9 100644 --- a/src/arch/mips/isa/formats/mt.isa +++ b/src/arch/mips/isa/formats/mt.isa @@ -1,6 +1,6 @@ // -*- mode:c++ -*- -// Copyright (c) 2003-2006 The Regents of The University of Michigan +// Copyright (c) 2006 The Regents of The University of Michigan // All rights reserved. // // Redistribution and use in source and binary forms, with or without @@ -35,14 +35,15 @@ output header {{ /** - * Base class for integer operations. + * Base class for MIPS MT ASE operations. */ class MT : public MipsStaticInst { protected: /// Constructor - MT(const char *mnem, MachInst _machInst, OpClass __opClass) : MipsStaticInst(mnem, _machInst, __opClass) + MT(const char *mnem, MachInst _machInst, OpClass __opClass) : + MipsStaticInst(mnem, _machInst, __opClass) { } |