summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z80/z80.cpp
diff options
context:
space:
mode:
author holub <andrei.holub@gmail.com>2022-04-29 04:46:07 -0400
committer GitHub <noreply@github.com>2022-04-29 10:46:07 +0200
commit90f166da8fdfd09006e7569c495bc91af8436a48 (patch)
tree8738c82e7b13d6690c65102d253f70f0aca1ceaf /src/devices/cpu/z80/z80.cpp
parent1acbb5c377976aa8bda08435ac1028195232f024 (diff)
z80: remove undesired state var in cpu implementation (#9645)
Diffstat (limited to 'src/devices/cpu/z80/z80.cpp')
-rw-r--r--src/devices/cpu/z80/z80.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/cpu/z80/z80.cpp b/src/devices/cpu/z80/z80.cpp
index 557fb3b595c..86a65ed3169 100644
--- a/src/devices/cpu/z80/z80.cpp
+++ b/src/devices/cpu/z80/z80.cpp
@@ -3677,7 +3677,6 @@ void z80_device::execute_set_input(int inputnum, int state)
break;
case INPUT_LINE_IRQ0:
- if(state && !m_irq_state) m_irq_at = total_cycles() + m_icount;
/* update the IRQ state via the daisy chain */
m_irq_state = state;
if (daisy_chain_present())