228a229,245
> def macroop ADC_LOCKED_M_I
> {
> limm t2, imm
> ldstl t1, seg, sib, disp
> adc t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
> stul t1, seg, sib, disp
> };
>
> def macroop ADC_LOCKED_P_I
> {
> rdip t7
> limm t2, imm
> ldstl t1, seg, riprel, disp
> adc t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
> stul t1, seg, riprel, disp
> };
>
243a261,275
> def macroop ADC_LOCKED_M_R
> {
> ldstl t1, seg, sib, disp
> adc t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
> stul t1, seg, sib, disp
> };
>
> def macroop ADC_LOCKED_P_R
> {
> rdip t7
> ldstl t1, seg, riprel, disp
> adc t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
> stul t1, seg, riprel, disp
> };
>