summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-09-15 11:48:33 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-09-15 11:48:33 -0400
commit523b1f11cffd7bfebb8ed0a7f35204f871dadeb0 (patch)
tree1545dbfd456ebfd229cc4f0471a93c6fac95e53c
parent90fd79601bed949b48fa2780e88a63bd19d2a459 (diff)
cyberbal: Fix SAC communications between 6502 and 68000 (MT 7749)
-rw-r--r--src/mame/audio/atarisac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/atarisac.cpp b/src/mame/audio/atarisac.cpp
index 3dd58e2602c..a0fef91cb29 100644
--- a/src/mame/audio/atarisac.cpp
+++ b/src/mame/audio/atarisac.cpp
@@ -254,7 +254,7 @@ void atari_sac_device::device_add_mconfig(machine_config &config)
// TODO: determine exact frequency (controlled by a PAL16R4)
GENERIC_LATCH_8(config, m_datin);
- m_datin->data_pending_callback().set_inputline(m_daccpu, M68K_IRQ_4);
+ m_datin->data_pending_callback().set_inputline(m_daccpu, M68K_IRQ_2);
m_datin->set_separate_acknowledge(true);
GENERIC_LATCH_8(config, m_datout);