summaryrefslogtreecommitdiff
path: root/src/arch/sparc/isa/formats.isa
blob: e044aee1fe42f5984a6b1919e16a4df3094896c7 (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
29
30
31
32
33
34
35
36
37
//Include the basic format
//Templates from this format are used later
##include "formats/basic.isa"

//Include base classes for microcoding instructions
##include "formats/micro.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 block memory format
##include "formats/blockmem.isa"

//Include the compare and swap format
##include "formats/cas.isa"

//Include the trap format
##include "formats/trap.isa"

//Include the unimplemented format
##include "formats/unimp.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"