summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/unsp/unsp_fxxx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/unsp/unsp_fxxx.cpp')
-rw-r--r--src/devices/cpu/unsp/unsp_fxxx.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/cpu/unsp/unsp_fxxx.cpp b/src/devices/cpu/unsp/unsp_fxxx.cpp
index 638f8d27387..fabec7a8d70 100644
--- a/src/devices/cpu/unsp/unsp_fxxx.cpp
+++ b/src/devices/cpu/unsp/unsp_fxxx.cpp
@@ -250,7 +250,6 @@ inline void unsp_device::execute_fxxx_100_group(uint16_t op)
void unsp_12_device::execute_divq(uint16_t op)
{
- uint32_t orig_dividend = 0;
if (m_core->m_divq_bit == UINT_MAX)
{
m_core->m_divq_bit = 15;
@@ -258,7 +257,6 @@ void unsp_12_device::execute_divq(uint16_t op)
m_core->m_divq_divisor = m_core->m_r[REG_R2];
m_core->m_divq_a = 0;
}
- orig_dividend = m_core->m_divq_dividend;
m_core->m_aq = BIT(m_core->m_divq_a, 31);
if (m_core->m_aq)
{