mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Making the RTC chip react on the Aussie Byte
This commit is contained in:
parent
87f62419c6
commit
f9b0a31dc9
@ -47,6 +47,7 @@ public:
|
||||
, m_floppy0(*this, "fdc:0")
|
||||
, m_floppy1(*this, "fdc:1")
|
||||
, m_crtc(*this, "crtc")
|
||||
, m_rtc(*this, "rtc")
|
||||
, m_speaker(*this, "speaker")
|
||||
, m_votrax(*this, "votrax")
|
||||
, m_rtc(*this, "rtc")
|
||||
@ -83,6 +84,9 @@ public:
|
||||
DECLARE_WRITE_LINE_MEMBER(sio2_rdya_w);
|
||||
DECLARE_WRITE_LINE_MEMBER(sio2_rdyb_w);
|
||||
DECLARE_WRITE_LINE_MEMBER(clock_w);
|
||||
DECLARE_READ_LINE_MEMBER(clock_r);
|
||||
DECLARE_READ8_MEMBER(rtc_data_r);
|
||||
DECLARE_WRITE8_MEMBER(rtc_data_w);
|
||||
DECLARE_MACHINE_RESET(aussiebyte);
|
||||
DECLARE_DRIVER_INIT(aussiebyte);
|
||||
DECLARE_WRITE_LINE_MEMBER(ctc_z0_w);
|
||||
@ -125,6 +129,7 @@ private:
|
||||
required_device<floppy_connector> m_floppy0;
|
||||
optional_device<floppy_connector> m_floppy1;
|
||||
required_device<mc6845_device> m_crtc;
|
||||
required_device<msm5832_device> m_rtc;
|
||||
required_device<speaker_sound_device> m_speaker;
|
||||
required_device<votrax_sc01_device> m_votrax;
|
||||
required_device<msm5832_device> m_rtc;
|
||||
|
Loading…
Reference in New Issue
Block a user