converted even it is not used (nw)

This commit is contained in:
Miodrag Milanovic 2014-03-21 18:54:48 +00:00
parent 2ed51f954d
commit e336d2f6a2

View File

@ -324,7 +324,10 @@ public:
void ms_atari_machine_start(int type, int has_cart); void ms_atari_machine_start(int type, int has_cart);
void ms_atari800xl_machine_start(int type, int has_cart); void ms_atari800xl_machine_start(int type, int has_cart);
WRITE8_MEMBER(a600xl_pia_pb_w) { a600xl_mmu(data); } DECLARE_WRITE8_MEMBER(a600xl_pia_pb_w) { a600xl_mmu(data); }
DECLARE_READ8_MEMBER(atari_pia_pa_r);
DECLARE_READ8_MEMBER(atari_pia_pb_r);
protected: protected:
required_device<cpu_device> m_maincpu; required_device<cpu_device> m_maincpu;
@ -2412,14 +2415,14 @@ static const pokey_interface atari_pokey_interface =
* *
**************************************************************/ **************************************************************/
READ8_DEVICE_HANDLER(atari_pia_pa_r) READ8_MEMBER(a400_state::atari_pia_pa_r)
{ {
return space.machine().root_device().ioport("djoy_0_1")->read_safe(0); return ioport("djoy_0_1")->read_safe(0);
} }
READ8_DEVICE_HANDLER(atari_pia_pb_r) READ8_MEMBER(a400_state::atari_pia_pb_r)
{ {
return space.machine().root_device().ioport("djoy_2_3")->read_safe(0); return ioport("djoy_2_3")->read_safe(0);
} }
// FIXME: should there be anything connected where other system have the fdc? // FIXME: should there be anything connected where other system have the fdc?