mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
DSPLLE - cleaning, small fixes (2 shift opcodes are more correct now (lsr,asr) + some 0x3... opcodes are working better in case they are extended)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4633 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -91,17 +91,12 @@ void Update_SR_Register16(s16 _Value, bool carry, bool overflow)
|
||||
}
|
||||
}
|
||||
|
||||
void Update_SR_LZ(s64 value) {
|
||||
void Update_SR_LZ(bool value) {
|
||||
|
||||
if (value == 0)
|
||||
{
|
||||
if (value == true)
|
||||
g_dsp.r[DSP_REG_SR] |= SR_LOGIC_ZERO;
|
||||
}
|
||||
else
|
||||
{
|
||||
g_dsp.r[DSP_REG_SR] &= ~SR_LOGIC_ZERO;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
inline int GetMultiplyModifier()
|
||||
|
Reference in New Issue
Block a user