Fixed arpl disasm

This commit is contained in:
Stanislav Shwartsman 2010-10-11 15:33:11 +00:00
parent 5ea2591cd9
commit dc72673bb3
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_tables.inc,v 1.36 2010-07-22 15:12:07 sshwarts Exp $
// $Id: dis_tables.inc,v 1.37 2010-10-11 15:33:11 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2010 Stanislav Shwartsman
@ -741,7 +741,7 @@ static BxDisasmOpcodeTable_t BxDisasmOpcodes16[256*2] = {
/* 60 */ { 0, &Ia_pushaw },
/* 61 */ { 0, &Ia_popaw },
/* 62 */ { 0, &Ia_boundw_Gw_Ma },
/* 63 */ { 0, &Ia_arpl_Ew_Rw },
/* 63 */ { 0, &Ia_arpl_Ew_Gw },
/* 64 */ { 0, &Ia_prefix_fs }, // FS:
/* 65 */ { 0, &Ia_prefix_gs }, // GS:
/* 66 */ { 0, &Ia_prefix_osize }, // OSIZE:
@ -1262,7 +1262,7 @@ static BxDisasmOpcodeTable_t BxDisasmOpcodes32[256*2] = {
/* 60 */ { 0, &Ia_pushal },
/* 61 */ { 0, &Ia_popal },
/* 62 */ { 0, &Ia_boundl_Gd_Ma },
/* 63 */ { 0, &Ia_arpl_Ew_Rw },
/* 63 */ { 0, &Ia_arpl_Ew_Gw },
/* 64 */ { 0, &Ia_prefix_fs }, // FS:
/* 65 */ { 0, &Ia_prefix_gs }, // GS:
/* 66 */ { 0, &Ia_prefix_osize }, // OSIZE:

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: opcodes.inc,v 1.40 2010-07-22 15:12:07 sshwarts Exp $
// $Id: opcodes.inc,v 1.41 2010-10-11 15:33:11 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman
@ -98,7 +98,7 @@ Ia_andw_Ew_Gw = { "and", "andw", Ew, Gw, XX, XX, 0 },
Ia_andw_Ew_Iw = { "and", "andw", Ew, Iw, XX, XX, 0 },
Ia_andw_Ew_sIb = { "and", "andw", Ew, sIbw, XX, XX, 0 },
Ia_andw_Gw_Ew = { "and", "andw", Gw, Ew, XX, XX, 0 },
Ia_arpl_Ew_Rw = { "arpl", "arpl", Ew, Rw, XX, XX, 0 },
Ia_arpl_Ew_Gw = { "arpl", "arpl", Ew, Gw, XX, XX, 0 },
Ia_blendpd_Vpd_Wpd_Ib = { "blendpd", "blendpd", Vpd, Wpd, Ib, XX, IA_SSE4_1 },
Ia_blendps_Vps_Wps_Ib = { "blendps", "blendps", Vps, Wps, Ib, XX, IA_SSE4_1 },
Ia_blendvpd_Vpd_Wpd = { "blendvpd", "blendvpd", Vpd, Wpd, XX, XX, IA_SSE4_1 },