Fix SETXF instructions
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1078
This commit is contained in:
parent
b222a9576a
commit
a32e1ba658
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
switch (inst.code.save) {
|
||||
/* Byte */
|
||||
case S_C_Eb:
|
||||
inst.op1.b=inst.cond;
|
||||
inst.op1.b=inst.cond ? 1 : 0;
|
||||
case S_Eb:
|
||||
if (inst.rm<0xc0) SaveMb(inst.rm_eaa,inst.op1.b);
|
||||
else reg_8(inst.rm_eai)=inst.op1.b;
|
||||
|
|
Loading…
Add table
Reference in a new issue