mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
[ARM] Enable VMOV to move from double VFP reg to two ARM registers.
This commit is contained in:
parent
af951f467e
commit
6fc2117503
@ -1150,7 +1150,10 @@ void ARMXEmitter::VMOV(ARMReg Dest, ARMReg Src)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Move 64bit To Arm reg
|
// Move 64bit To Arm reg
|
||||||
_dbg_assert_msg_(DYNA_REC, false, "This VMOV doesn't support moving 64bit ARM From NEON");
|
ARMReg Dest2 = (ARMReg)(Dest + 1);
|
||||||
|
Src = SubBase(Src);
|
||||||
|
Write32(condition | (0xC5 << 20) | (Dest2 << 16) | (Dest << 12) \
|
||||||
|
| (0xB << 8) | ((Dest & 0x10) << 1) | (1 << 4) | (Src & 0xF));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user