Module: wine Branch: master Commit: 5e486f6de0b6adfcb5981d41f94b1747b27d62a9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5e486f6de0b6adfcb5981d41f9... Author: Daniel Lehman <dlehman25(a)gmail.com> Date: Tue Jun 20 00:31:44 2017 -0700 winedbg: Display movaps in disassembly. 0f 28 /r movaps xmm1, xmm2/m128 0f 29 /r movaps xmm2/m128, xmm1 Signed-off-by: Daniel Lehman <dlehman25(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- programs/winedbg/db_disasm64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/winedbg/db_disasm64.c b/programs/winedbg/db_disasm64.c index fe6a538..4957eeb 100644 --- a/programs/winedbg/db_disasm64.c +++ b/programs/winedbg/db_disasm64.c @@ -280,8 +280,8 @@ static const struct inst db_inst_0f2x[] = { /*26*/ { "mov", TRUE, LONG, op2(El,TR), 0 }, /*27*/ { "", FALSE, NONE, 0, 0 }, -/*28*/ { "", FALSE, NONE, 0, 0 }, -/*29*/ { "", FALSE, NONE, 0, 0 }, +/*28*/ { "movaps",TRUE, NONE, op2(E, XMM), 0 }, +/*29*/ { "movaps",TRUE, NONE, op2(XMM, E), 0 }, /*2a*/ { "", FALSE, NONE, 0, 0 }, /*2b*/ { "", FALSE, NONE, 0, 0 }, /*2c*/ { "", FALSE, NONE, 0, 0 },