mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
compile fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2946 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -1552,7 +1552,7 @@ void mulac(const UDSPInstruction& opc)
|
|||||||
void mulmv(const UDSPInstruction& opc)
|
void mulmv(const UDSPInstruction& opc)
|
||||||
{
|
{
|
||||||
u8 rreg = (opc.hex >> 8) & 0x1;
|
u8 rreg = (opc.hex >> 8) & 0x1;
|
||||||
u8 sreg = ((opc.hex >> 11) & 0x1)
|
u8 sreg = ((opc.hex >> 11) & 0x1);
|
||||||
s64 prod = dsp_get_long_prod();
|
s64 prod = dsp_get_long_prod();
|
||||||
s64 acc = prod;
|
s64 acc = prod;
|
||||||
dsp_set_long_acc(rreg, acc);
|
dsp_set_long_acc(rreg, acc);
|
||||||
|
Reference in New Issue
Block a user