1
0
Fork 0

Fix BTRd instruction, missed a break;

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1573
This commit is contained in:
Sjoerd van der Berg 2004-01-12 10:05:57 +00:00
parent d227299bc1
commit a3bbaacb51

View file

@ -586,6 +586,7 @@ switch (inst.code.op) {
FillFlags();
SETFLAGBIT(CF,(inst.op1.d & (1 << (inst.op2.d & 31))));
inst.op1.d&=~(1 << (inst.op2.d & 31));
break;
case O_BSWAP:
BSWAP(inst.op1.d);
break;