mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
Add a few drivers inadvertently omitted from a455d0031a
This commit is contained in:
parent
a455d0031a
commit
4416c9aa7b
@ -567,10 +567,8 @@ void rx2030_state::iop_io_map(address_map &map)
|
||||
map(0x0200, 0x0201).rw(m_fio, FUNC(z8038_device::fifo_r<1>), FUNC(z8038_device::fifo_w<1>)).umask16(0xff);
|
||||
map(0x0202, 0x0203).rw(m_fio, FUNC(z8038_device::reg_r<1>), FUNC(z8038_device::reg_w<1>)).umask16(0xff);
|
||||
|
||||
map(0x0240, 0x0241).lw8(NAME([this] (u8 data) { m_rtc->write(0, data); })).umask16(0xff00);
|
||||
map(0x0280, 0x0281).lrw8(
|
||||
NAME([this] () { return m_rtc->read(1); }),
|
||||
NAME([this] (u8 data) { m_rtc->write(1, data); })).umask16(0xff00);
|
||||
map(0x0240, 0x0241).w(m_rtc, FUNC(mc146818_device::address_w)).umask16(0xff00);
|
||||
map(0x0280, 0x0281).rw(m_rtc, FUNC(mc146818_device::data_r), FUNC(mc146818_device::data_w)).umask16(0xff00);
|
||||
|
||||
map(0x02c0, 0x2c1).lw8([this](u8 data)
|
||||
{
|
||||
|
@ -782,7 +782,6 @@ void savquest_state::savquest_map(address_map &map)
|
||||
void savquest_state::savquest_io(address_map &map)
|
||||
{
|
||||
pcat32_io_common(map);
|
||||
map(0x0070, 0x007f).rw(m_mc146818, FUNC(ds12885_device::read), FUNC(ds12885_device::write));
|
||||
|
||||
map(0x00e8, 0x00ef).noprw();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user