diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-02-14 22:43:26 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-02-14 22:43:26 -0500 |
commit | aee1bf58734c2146eb048dc4833881886ce68cf8 (patch) | |
tree | 8cee41171ac3cd4d95f5c4a258a9bdd31428c0c2 /arch/mips/isa/formats.isa | |
parent | 7826fcd09dfb265adae82f99d09944fe67f0fb5a (diff) | |
parent | 23bbec6a3445b4382f8c6ff8ea49fd818f960330 (diff) | |
download | gem5-aee1bf58734c2146eb048dc4833881886ce68cf8.tar.xz |
Merge zizzer:/bk/multiarch
into zazzer.eecs.umich.edu:/z/ksewell/research/m5-sim/m5-multiarch
--HG--
extra : convert_revision : 5b0a3dd1a52ca9b29ea4a1c505a7435bfd6110fe
Diffstat (limited to 'arch/mips/isa/formats.isa')
-rw-r--r-- | arch/mips/isa/formats.isa | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/arch/mips/isa/formats.isa b/arch/mips/isa/formats.isa index 404314c7a..20ef49d82 100644 --- a/arch/mips/isa/formats.isa +++ b/arch/mips/isa/formats.isa @@ -1,22 +1,29 @@ //Include the basic format //Templates from this format are used later -##include "m5/arch/mips/isa_desc/formats/basic.format" +##include "m5/arch/mips/isa/formats/basic.isa" //Include the integerOp and integerOpCc format -##include "m5/arch/mips/isa_desc/formats/integerop.format" +##include "m5/arch/mips/isa/formats/int.isa" //Include the floatOp format -##include "m5/arch/mips/isa_desc/formats/floatop.format" +##include "m5/arch/mips/isa/formats/fp.isa" //Include the mem format -##include "m5/arch/mips/isa_desc/formats/mem.format" +##include "m5/arch/mips/isa/formats/mem.isa" //Include the trap format -##include "m5/arch/mips/isa_desc/formats/trap.format" +##include "m5/arch/mips/isa/formats/trap.isa" //Include the branch format -##include "m5/arch/mips/isa_desc/formats/branch.format" +##include "m5/arch/mips/isa/formats/branch.isa" //Include the noop format -##include "m5/arch/mips/isa_desc/formats/noop.format" +##include "m5/arch/mips/isa/formats/noop.isa" + + +//Include the noop format +##include "m5/arch/mips/isa/formats/unimp.isa" + +//Include the noop format +##include "m5/arch/mips/isa/formats/unknown.isa" |