summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/xor100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/xor100.cpp')
-rw-r--r--src/mame/drivers/xor100.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/xor100.cpp b/src/mame/drivers/xor100.cpp
index 5392e0a0e2a..07503074fb0 100644
--- a/src/mame/drivers/xor100.cpp
+++ b/src/mame/drivers/xor100.cpp
@@ -265,9 +265,9 @@ void xor100_state::xor100_io(address_map &map)
map(0x0a, 0x0a).r(FUNC(xor100_state::prom_disable_r));
map(0x0b, 0x0b).portr("DSW0").w(COM5016_TAG, FUNC(com8116_device::stt_str_w));
map(0x0c, 0x0f).rw(m_ctc, FUNC(z80ctc_device::read), FUNC(z80ctc_device::write));
- map(0xf8, 0xfb).lrw8("fdc",
- [this](offs_t offset) { return m_fdc->read(offset) ^ 0xff; },
- [this](offs_t offset, u8 data) { m_fdc->write(offset, data ^ 0xff); });
+ map(0xf8, 0xfb).lrw8(
+ NAME([this](offs_t offset) { return m_fdc->read(offset) ^ 0xff; }),
+ NAME([this](offs_t offset, u8 data) { m_fdc->write(offset, data ^ 0xff); }));
map(0xfc, 0xfc).rw(FUNC(xor100_state::fdc_wait_r), FUNC(xor100_state::fdc_dcont_w));
map(0xfd, 0xfd).w(FUNC(xor100_state::fdc_dsel_w));
}