mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
[ARM] Enable VMOV to move from double VFP reg to two ARM registers.
This commit is contained in:
parent
af951f467e
commit
6fc2117503
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue