gem5/arch/mips/isa_desc/formats.h
Korey Sewell 2bc106a8e7 "sparc" -> "mips"
arch/mips/isa_desc/formats.h:
arch/mips/isa_desc/formats/basic.format:
arch/mips/isa_desc/formats/branch.format:
arch/mips/isa_desc/formats/integerop.format:
arch/mips/isa_desc/formats/mem.format:
arch/mips/isa_desc/formats/noop.format:
arch/mips/isa_desc/formats/trap.format:
arch/mips/isa_traits.cc:
arch/mips/isa_traits.hh:
    changing "sparc" strings to "mips" everywhere

--HG--
extra : convert_revision : eaecf9eeac26e3ef0726deef2fb5d7e9ad172984
2006-01-26 16:19:44 -05:00

22 lines
647 B
C

//Include the basic format
//Templates from this format are used later
##include "m5/arch/mips/isa_desc/formats/basic.format"
//Include the integerOp and integerOpCc format
##include "m5/arch/mips/isa_desc/formats/integerop.format"
//Include the floatOp format
##include "m5/arch/mips/isa_desc/formats/floatop.format"
//Include the mem format
##include "m5/arch/mips/isa_desc/formats/mem.format"
//Include the trap format
##include "m5/arch/mips/isa_desc/formats/trap.format"
//Include the branch format
##include "m5/arch/mips/isa_desc/formats/branch.format"
//Include the noop format
##include "m5/arch/mips/isa_desc/formats/noop.format"