Previous 199869 Revisions Next

r26909 Friday 3rd January, 2014 at 02:51:29 UTC by smf
missed this in last commit (nw)
[src/emu/bus/vic20]user.c

trunk/src/emu/bus/vic20/user.c
r26908r26909
6363   m_6_handler(*this),
6464   m_7_handler(*this),
6565   m_8_handler(*this),
66   m_9_handler(*this),
6667   m_b_handler(*this),
6768   m_c_handler(*this),
6869   m_d_handler(*this),
r26908r26909
9293   m_6_handler.resolve_safe();
9394   m_7_handler.resolve_safe();
9495   m_8_handler.resolve_safe();
96   m_9_handler.resolve_safe();
9597   m_b_handler.resolve_safe();
9698   m_c_handler.resolve_safe();
9799   m_d_handler.resolve_safe();
r26908r26909
110112   m_6_handler(1);
111113   m_7_handler(1);
112114   m_8_handler(1);
115   m_9_handler(1);
113116   m_b_handler(1);
114117   m_c_handler(1);
115118   m_d_handler(1);
r26908r26909
136139}
137140
138141
142WRITE_LINE_MEMBER( vic20_user_port_device::write_3 ) { if (m_card != NULL) m_card->write_3(state); }
143WRITE_LINE_MEMBER( vic20_user_port_device::write_4 ) { if (m_card != NULL) m_card->write_4(state); }
144WRITE_LINE_MEMBER( vic20_user_port_device::write_5 ) { if (m_card != NULL) m_card->write_5(state); }
145WRITE_LINE_MEMBER( vic20_user_port_device::write_6 ) { if (m_card != NULL) m_card->write_6(state); }
139146WRITE_LINE_MEMBER( vic20_user_port_device::write_7 ) { if (m_card != NULL) m_card->write_7(state); }
147WRITE_LINE_MEMBER( vic20_user_port_device::write_8 ) { if (m_card != NULL) m_card->write_8(state); }
140148WRITE_LINE_MEMBER( vic20_user_port_device::write_9 ) { if (m_card != NULL) m_card->write_9(state); }
141149WRITE_LINE_MEMBER( vic20_user_port_device::write_b ) { if (m_card != NULL) m_card->write_b(state); }
142150WRITE_LINE_MEMBER( vic20_user_port_device::write_c ) { if (m_card != NULL) m_card->write_c(state); }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team