diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-02-14 21:26:01 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-02-14 21:26:01 -0500 |
commit | 5830200d78afa4d50f672b67fc7db80c78e3a2ad (patch) | |
tree | edeab1687e7e74138f8af34e996e12527b927f49 /arch/mips/isa/formats.isa | |
parent | 9f584bcc6f247b844dc699bab38c684128c5afd2 (diff) | |
download | gem5-5830200d78afa4d50f672b67fc7db80c78e3a2ad.tar.xz |
trying to get ISA to parse correctly ...
arch/mips/isa/formats/unimp.isa:
holds unimplemented formats
arch/mips/isa/formats/unknown.isa:
holds unknown formats
--HG--
extra : convert_revision : 0f3a8ea7e3a1592322cce54527d6989152e57975
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" |