Fixed double shift's
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@973
This commit is contained in:
parent
657e5e5806
commit
787a0c941a
1 changed files with 4 additions and 4 deletions
|
@ -129,22 +129,22 @@ switch (inst.code.op) {
|
|||
|
||||
case O_DSHLw:
|
||||
{
|
||||
DSHLW(inst.op1.w,inst.op2.w,inst.imm.b,,LoadD,SaveD);
|
||||
DSHLW(inst.op1.w,inst.op2.w,inst.imm.b,LoadD,SaveD);
|
||||
break;
|
||||
}
|
||||
case O_DSHRw:
|
||||
{
|
||||
DSHRW(inst.op1.w,inst.op2.w,inst.imm.b,,LoadD,SaveD);
|
||||
DSHRW(inst.op1.w,inst.op2.w,inst.imm.b,LoadD,SaveD);
|
||||
break;
|
||||
}
|
||||
case O_DSHLd:
|
||||
{
|
||||
DSHLD(inst.op1.d,inst.op2.d,inst.imm.b,,LoadD,SaveD);
|
||||
DSHLD(inst.op1.d,inst.op2.d,inst.imm.b,LoadD,SaveD);
|
||||
break;
|
||||
}
|
||||
case O_DSHRd:
|
||||
{
|
||||
DSHRD(inst.op1.d,inst.op2.d,inst.imm.b,,LoadD,SaveD);
|
||||
DSHRD(inst.op1.d,inst.op2.d,inst.imm.b,LoadD,SaveD);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue