mirror of
https://github.com/holub/mame
synced 2025-10-06 00:54:22 +03:00
drcbex64: wrong register type (nw)
This commit is contained in:
parent
8c8aca795e
commit
be6c71451b
@ -5954,7 +5954,7 @@ void drcbe_x64::op_fmov(x86code *&dst, const instruction &inst)
|
|||||||
{
|
{
|
||||||
if (srcp.is_float_register())
|
if (srcp.is_float_register())
|
||||||
{
|
{
|
||||||
emit_movss_p32_r128(dst, dstp, srcp.ireg()); // movss dstp,srcp
|
emit_movss_p32_r128(dst, dstp, srcp.freg()); // movss dstp,srcp
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -5968,7 +5968,7 @@ void drcbe_x64::op_fmov(x86code *&dst, const instruction &inst)
|
|||||||
{
|
{
|
||||||
if (srcp.is_float_register())
|
if (srcp.is_float_register())
|
||||||
{
|
{
|
||||||
emit_movsd_p64_r128(dst, dstp, srcp.ireg()); // movsd dstp,srcp
|
emit_movsd_p64_r128(dst, dstp, srcp.freg()); // movsd dstp,srcp
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user