summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder/two_byte_opcodes.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-08-18 00:52:45 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-08-18 00:52:45 -0700
commitfd45c04cad4891c6216807639482f2b2d6a7b042 (patch)
tree63dd180fab8258317559fbff99f46f456c5a765a /src/arch/x86/isa/decoder/two_byte_opcodes.isa
parenta1ea10d7bac34f022598f82873723e2dfee58625 (diff)
downloadgem5-fd45c04cad4891c6216807639482f2b2d6a7b042.tar.xz
X86: Decode three byte opcodes.
Diffstat (limited to 'src/arch/x86/isa/decoder/two_byte_opcodes.isa')
-rw-r--r--src/arch/x86/isa/decoder/two_byte_opcodes.isa8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
index 213e57264..b181770cc 100644
--- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa
@@ -428,8 +428,12 @@
0x7: getsec();
}
0x07: decode OPCODE_OP_BOTTOM3 {
- 0x0: three_byte_opcode();
- 0x2: three_byte_opcode();
+ 0x0: M5InternalError::error(
+ {{"Three byte opcode shouldn't be handled by "
+ "two_byte_opcodes.isa!"}});
+ 0x2: M5InternalError::error(
+ {{"Three byte opcode shouldn't be handled by "
+ "two_byte_opcodes.isa!"}});
default: UD2();
}
format Inst {