]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Implement primary opcode 0x10 (ADC Gb,Eb).
authorJulian Seward <jseward@acm.org>
Thu, 5 Sep 2002 19:31:23 +0000 (19:31 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 5 Sep 2002 19:31:23 +0000 (19:31 +0000)
MERGE TO ERASER

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

vg_to_ucode.c

index 475b328e9b93c7f2f8634598d7a65621529ca5a6..d712012243f690ba8469648342b3afa60b4810a9 100644 (file)
@@ -3683,6 +3683,9 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op2_G_E ( cb, OR, True, sz, eip, "or" );
       break;
 
+   case 0x10: /* ADC Gb,Eb */
+      eip = dis_op2_G_E ( cb, ADC, True, 1, eip, "adc" );
+      break;
    case 0x11: /* ADC Gv,Ev */
       eip = dis_op2_G_E ( cb, ADC, True, sz, eip, "adc" );
       break;