diff options
author | 2020-04-16 18:54:00 -0400 | |
---|---|---|
committer | 2020-04-16 18:54:00 -0400 | |
commit | 48d3697853721e39fa34c8c392b0e642d38779e8 (patch) | |
tree | 4a211791fac48a99579eca26f0b32060686200f9 | |
parent | e8e453d061ffb46a9c87c5faea9f861204f547af (diff) |
z8000: Fix mindless mistake (nw)
-rw-r--r-- | src/devices/cpu/z8000/z8000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/z8000/z8000.cpp b/src/devices/cpu/z8000/z8000.cpp index eb5e9e206ca..80dbe20e1ab 100644 --- a/src/devices/cpu/z8000/z8000.cpp +++ b/src/devices/cpu/z8000/z8000.cpp @@ -478,7 +478,7 @@ void z8002_device::Interrupt() else if ((m_irq_req & Z8000_NVI) && (m_fcw & F_NVIE)) { - standard_irq_callback(VI_LINE); + standard_irq_callback(NVI_LINE); m_irq_vec = m_iack_in[2](m_pc); m_halt = false; |