From: Julian Seward Date: Sun, 13 Oct 2002 12:10:36 +0000 (+0000) Subject: Implement primary opcode 0x1A (SBB Eb,Gb). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b6aa56da9e325fd6743282a5603837e640934aa;p=thirdparty%2Fvalgrind.git Implement primary opcode 0x1A (SBB Eb,Gb). MERGE TO HEAD if it ain't already there git-svn-id: svn://svn.valgrind.org/valgrind/branches/VALGRIND_1_0_BRANCH@1216 --- diff --git a/vg_to_ucode.c b/vg_to_ucode.c index 0ad889b576..d8158ffdc4 100644 --- a/vg_to_ucode.c +++ b/vg_to_ucode.c @@ -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;