summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-02 22:03:38 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-02 22:03:38 -0700
commit7d78f1b41c0cef781bb370e2c9bd1457b8e6a341 (patch)
tree5b3248993f17dc67764685f755a8899e97715036 /src/arch/x86/isa/decoder
parent66a08f7ba4461664738fd88839ad49c0120bf098 (diff)
downloadgem5-7d78f1b41c0cef781bb370e2c9bd1457b8e6a341.tar.xz
X86: Hook in another version of the XCHG instruction.
--HG-- extra : convert_revision : 7b6f9cd2f59443622f6963dfee454175322c0ef5
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r--src/arch/x86/isa/decoder/one_byte_opcodes.isa2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
index d4e881128..0816eb175 100644
--- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
@@ -302,7 +302,7 @@
}
0x12: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::NOP(); //XXX repe makes this a "pause"
- default: xchg_B_rAX();
+ default: Inst::XCHG(Bv,rAv);
}
0x13: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::CDQE(rAv);