summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/6522via.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2014-01-01 15:59:32 +0000
committer smf- <smf-@users.noreply.github.com>2014-01-01 15:59:32 +0000
commitcf7b3b7582539fd80dd5815ae90ebc50ebe75ccf (patch)
tree3715adc2644b78c03392c3042e3786bb74f5a7b4 /src/emu/machine/6522via.c
parentd83aa23ca014bc41fd132df0492561e1b28415dc (diff)
removed ca1/ca2/cb1 callbacks as they were never called anyway [smf]
Diffstat (limited to 'src/emu/machine/6522via.c')
-rw-r--r--src/emu/machine/6522via.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/emu/machine/6522via.c b/src/emu/machine/6522via.c
index d21e65e0804..95047865452 100644
--- a/src/emu/machine/6522via.c
+++ b/src/emu/machine/6522via.c
@@ -150,9 +150,6 @@ via6522_device::via6522_device(const machine_config &mconfig, const char *tag, d
: device_t(mconfig, VIA6522, "6522 VIA", tag, owner, clock, "via6522", __FILE__),
m_in_a_handler(*this),
m_in_b_handler(*this),
- m_in_ca1_handler(*this),
- m_in_cb1_handler(*this),
- m_in_ca2_handler(*this),
m_in_cb2_handler(*this),
m_out_a_handler(*this),
m_out_b_handler(*this),
@@ -174,9 +171,6 @@ void via6522_device::device_start()
{
m_in_a_handler.resolve();
m_in_b_handler.resolve();
- m_in_ca1_handler.resolve();
- m_in_cb1_handler.resolve();
- m_in_ca2_handler.resolve();
m_in_cb2_handler.resolve();
m_out_a_handler.resolve_safe();
m_out_b_handler.resolve_safe();