Fixed 32bits BE opcode to clear upper part of reg

This commit is contained in:
ptitSeb 2021-03-05 16:56:16 +01:00
parent a6337819c0
commit e9fc44761c

View File

@ -364,7 +364,7 @@ x64emurun:
if(rex.w)
emu->regs[(opcode&7)+(rex.b<<3)].q[0] = F64;
else
emu->regs[(opcode&7)+(rex.b<<3)].dword[0] = F32;
emu->regs[(opcode&7)+(rex.b<<3)].q[0] = F32;
break;
case 0xC1: /* GRP2 Ed,Ib */