From 7d78f1b41c0cef781bb370e2c9bd1457b8e6a341 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 2 Oct 2007 22:03:38 -0700 Subject: [PATCH] X86: Hook in another version of the XCHG instruction. --HG-- extra : convert_revision : 7b6f9cd2f59443622f6963dfee454175322c0ef5 --- src/arch/x86/isa/decoder/one_byte_opcodes.isa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);