summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32082
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-26 10:27:03 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-26 10:27:03 +0100
commita546ea128238feaa616451ed7b7f4fe389dd1460 (patch)
tree7ef7ce818fbf2ca1b6460d7c30554072c4056793 /src/devices/cpu/tms32082
parent2d00b8653dcaf9222721bc9fd995c1c1cc739c83 (diff)
cleanup (nw)
Diffstat (limited to 'src/devices/cpu/tms32082')
-rw-r--r--src/devices/cpu/tms32082/mp_ops.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/tms32082/mp_ops.cpp b/src/devices/cpu/tms32082/mp_ops.cpp
index f92f5091053..bdfbcf1ff28 100644
--- a/src/devices/cpu/tms32082/mp_ops.cpp
+++ b/src/devices/cpu/tms32082/mp_ops.cpp
@@ -254,7 +254,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 compmask = endmask; // shiftmask == 0xffffffff
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = ROTATE_R(source, rot) & compmask;
@@ -283,7 +283,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 compmask = endmask; // shiftmask == 0xffffffff
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = ROTATE_R(source, rot) & compmask;
@@ -316,7 +316,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 shiftmask = SHIFT_MASK[shift ? shift : 32];
UINT32 compmask = endmask & shiftmask;
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = ROTATE_R(source, rot) & compmask;
@@ -346,7 +346,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 shiftmask = SHIFT_MASK[r ? 32-rot : rot];
UINT32 compmask = endmask & shiftmask;
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = (ROTATE_R(source, rot) & compmask) | (m_reg[rd] & ~compmask);
@@ -377,7 +377,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 shiftmask = SHIFT_MASK[shift ? shift : 32];
UINT32 compmask = endmask & shiftmask;
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = ROTATE_R(source, rot) & compmask;
@@ -409,7 +409,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 shiftmask = SHIFT_MASK[r ? 32-rot : rot];
UINT32 compmask = endmask & ~shiftmask;
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = ROTATE_R(source, rot) & compmask;
@@ -439,7 +439,7 @@ void tms32082_mp_device::execute_short_imm()
UINT32 shiftmask = SHIFT_MASK[r ? 32-rot : rot];
UINT32 compmask = endmask & ~shiftmask;
- UINT32 res = 0;
+ UINT32 res;
if (r) // right
{
res = (ROTATE_R(source, rot) & compmask) | (m_reg[rd] & ~compmask);