blob: 404314c7a7e8993f4fc69e8fca18e5d656ee9514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//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"
|