mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 14:58:03 +03:00
DSPLLE - 0xa100 figured out = abs(), small mul fix, cleaning, some extra comments
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5216 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
4f56d8144b
commit
503bf545a3
9 changed files with 161 additions and 256 deletions
|
@ -40,7 +40,7 @@ void Update_SR_Register64(s64 _Value, bool carry, bool overflow)
|
|||
if (overflow)
|
||||
{
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW;
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW_SPECIAL;
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW_STICKY;
|
||||
}
|
||||
|
||||
// 0x04
|
||||
|
@ -83,7 +83,7 @@ void Update_SR_Register16(s16 _Value, bool carry, bool overflow, bool overS32)
|
|||
if (overflow)
|
||||
{
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW;
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW_SPECIAL;
|
||||
g_dsp.r[DSP_REG_SR] |= SR_OVERFLOW_STICKY;
|
||||
}
|
||||
|
||||
// 0x04
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue