summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/formats/formats.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-03-21 21:07:43 +0000
committerGabe Black <gblack@eecs.umich.edu>2007-03-21 21:07:43 +0000
commitbbffaa8ee0af3a4c8454d63f197dbb3036918904 (patch)
treea80a6ebc59f7d68bc313067ecff6fc30880833b1 /src/arch/x86/isa/formats/formats.isa
parent1707aa750f2dd2a7cf4da2934c93ef8e26faf244 (diff)
downloadgem5-bbffaa8ee0af3a4c8454d63f197dbb3036918904.tar.xz
Start implementing groups of instructions which do the same thing on different sets of inputs.
--HG-- extra : convert_revision : 6a5be61831588f801965dd4e80cb52f28911c320
Diffstat (limited to 'src/arch/x86/isa/formats/formats.isa')
-rw-r--r--src/arch/x86/isa/formats/formats.isa4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/isa/formats/formats.isa b/src/arch/x86/isa/formats/formats.isa
index 3287b92c5..d763c05bc 100644
--- a/src/arch/x86/isa/formats/formats.isa
+++ b/src/arch/x86/isa/formats/formats.isa
@@ -94,3 +94,7 @@
//Include a format to signal m5 internal errors. This is used to indicate a
//malfunction of the decode mechanism.
##include "error.isa"
+
+//Include a format which implements a batch of instructions which do the same
+//thing on a variety of inputs
+##include "multi.isa"