blob: 17d68061bc97b1a6c1195e54cee12e5eb81ffe8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//Include the basic format
//Templates from this format are used later
##include "formats/basic.isa"
//Include the noop format
##include "formats/nop.isa"
//Include the integerOp and integerOpCc format
##include "formats/integerop.isa"
//Include the memory format
##include "formats/mem.isa"
//Include the compare and swap format
##include "formats/cas.isa"
//Include the trap format
##include "formats/trap.isa"
//Include the "unknown" format
##include "formats/unknown.isa"
//Include the priveleged mode format
##include "formats/priv.isa"
//Include the branch format
##include "formats/branch.isa"
|