diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-03-29 17:35:51 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-03-29 17:35:51 -0500 |
commit | 1e4e989b8396b9f4f322fb27bbfa1cf9e2007334 (patch) | |
tree | 236034318170bd70925abaecaeee398b7b9bb7e9 /arch/mips/isa/formats/formats.isa | |
parent | 76daf50937abda24d46a44754e2793570fc624b4 (diff) | |
parent | d46d3d6811822d218c137cd6d991e6b4981811d6 (diff) | |
download | gem5-1e4e989b8396b9f4f322fb27bbfa1cf9e2007334.tar.xz |
Merge m5.eecs.umich.edu:/bk/newmem
into ewok.(none):/home/gblack/m5/newmem
--HG--
extra : convert_revision : 984b015700ccef71d95b4d7d775a7b3f24084dc6
Diffstat (limited to 'arch/mips/isa/formats/formats.isa')
-rw-r--r-- | arch/mips/isa/formats/formats.isa | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/mips/isa/formats/formats.isa b/arch/mips/isa/formats/formats.isa new file mode 100644 index 000000000..7d493ffae --- /dev/null +++ b/arch/mips/isa/formats/formats.isa @@ -0,0 +1,35 @@ +// -*- mode:c++ -*- + +//Templates from this format are used later +//Include the basic format +##include "basic.isa" + +//Include the basic format +##include "noop.isa" + +//Include utility functions +##include "util.isa" + +//Include the cop0 formats +##include "cop0.isa" + +//Include the integer formats +##include "int.isa" + +//Include the floatOp format +##include "fp.isa" + +//Include the mem format +##include "mem.isa" + +//Include the trap format +##include "trap.isa" + +//Include the branch format +##include "branch.isa" + +//Include the noop format +##include "unimp.isa" + +//Include the noop format +##include "unknown.isa" |