1
0
Fork 0

Fix SETXF instructions

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1078
This commit is contained in:
Sjoerd van der Berg 2003-06-19 17:47:56 +00:00
parent b222a9576a
commit a32e1ba658

View file

@ -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;