diff options
author | 2016-05-04 12:20:03 +0200 | |
---|---|---|
committer | 2016-05-04 12:20:17 +0200 | |
commit | d6d39930b027d29060701bd12c90b3786d91b2ed (patch) | |
tree | e7ad403ccbbb43539054f24159bea2b3353aaa51 /src/devices/cpu/unsp/unsp.cpp | |
parent | ea1863db53de85ec2f27760ff017c8fb57fe2164 (diff) |
Suppress some unnecessary logerrors in code I wrote, nw
Diffstat (limited to 'src/devices/cpu/unsp/unsp.cpp')
-rw-r--r-- | src/devices/cpu/unsp/unsp.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/devices/cpu/unsp/unsp.cpp b/src/devices/cpu/unsp/unsp.cpp index 515e26ad685..15d557335c1 100644 --- a/src/devices/cpu/unsp/unsp.cpp +++ b/src/devices/cpu/unsp/unsp.cpp @@ -812,7 +812,6 @@ void unsp_device::execute_set_input(int irqline, int state) if(!state) { - logerror("clearing irq %d (%04x, %04x)\n", irqline, m_sirq, m_curirq); return; } @@ -840,7 +839,6 @@ void unsp_device::execute_set_input(int irqline, int state) } m_irq |= 2; m_curirq |= (1 << irqline); - logerror("taking irq %d (%04x, %04x)\n", irqline, m_sirq, m_curirq); irq_vector = 0xfff8 + (irqline - UNSP_IRQ0_LINE); break; case UNSP_FIQ_LINE: @@ -852,7 +850,6 @@ void unsp_device::execute_set_input(int irqline, int state) } m_fiq |= 2; m_curirq |= (1 << irqline); - logerror("taking fiq %d (%04x, %04x)\n", irqline, m_sirq, m_curirq); irq_vector = 0xfff6; break; case UNSP_BRK_LINE: |