diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 20:25:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 20:25:14 -0700 |
commit | 7d4db7266ea950bb1af6f74f407cc1e9e11faff6 (patch) | |
tree | 397c7e0f5b84b00579a4887042ffc7197c25c26c /src/arch/x86/isa/decoder | |
parent | 179fd4e536e12cbd1baeefbd9d8ac0557f899003 (diff) | |
download | gem5-7d4db7266ea950bb1af6f74f407cc1e9e11faff6.tar.xz |
X86: Implement MOVSS.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 4 |
1 files changed, 2 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 dabc1bb75..41cbdd869 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -306,8 +306,8 @@ } // repe (0xF3) 0x4: decode OPCODE_OP_BOTTOM3 { - 0x0: WarnUnimpl::movss_Vd_Wd(); - 0x1: WarnUnimpl::movss_Wd_Vd(); + 0x0: MOVSS(Vd,Wd); + 0x1: MOVSS(Wd,Vd); 0x2: WarnUnimpl::movsldup_Vo_Wo(); 0x6: WarnUnimpl::movshdup_Vo_Wo(); default: UD2(); |