]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Implement primary opcode 0x1A (SBB Eb,Gb).
authorJulian Seward <jseward@acm.org>
Sun, 13 Oct 2002 12:10:36 +0000 (12:10 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 13 Oct 2002 12:10:36 +0000 (12:10 +0000)
MERGE TO HEAD if it ain't already there

git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_1_0_BRANCH@1216

vg_to_ucode.c

index 0ad889b576da9aeebd0f894f2268b50f7f7038e6..d8158ffdc47d7309ff5b9751c32edecc38129a11 100644 (file)
@@ -3628,6 +3628,9 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op2_E_G ( cb, ADC, True, sz, eip, "adc" );
       break;
 
+   case 0x1A: /* SBB Eb,Gb */
+      eip = dis_op2_E_G ( cb, SBB, True, 1, eip, "sbb" );
+      break;
    case 0x1B: /* SBB Ev,Gv */
       eip = dis_op2_E_G ( cb, SBB, True, sz, eip, "sbb" );
       break;