summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/px8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/px8.cpp')
-rw-r--r--src/mame/drivers/px8.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/px8.cpp b/src/mame/drivers/px8.cpp
index f7672deb7f6..98288519fa8 100644
--- a/src/mame/drivers/px8.cpp
+++ b/src/mame/drivers/px8.cpp
@@ -528,8 +528,8 @@ void px8_state::px8_io(address_map &map)
map.global_mask(0x0f);
map(0x00, 0x07).rw(FUNC(px8_state::gah40m_r), FUNC(px8_state::gah40m_w));
map(0x0c, 0x0d).rw(I8251_TAG, FUNC(i8251_device::read), FUNC(i8251_device::write));
-// AM_RANGE(0x0e, 0x0e) AM_DEVREADWRITE(SED1320_TAG, sed1330_device, status_r, data_w)
-// AM_RANGE(0x0f, 0x0f) AM_DEVREADWRITE(SED1320_TAG, sed1330_device, data_r, command_w)
+// map(0x0e, 0x0e).rw(SED1320_TAG, FUNC(sed1330_device::status_r), FUNC(sed1330_device::data_w));
+// map(0x0f, 0x0f).rw(SED1320_TAG, FUNC(sed1330_device::data_r), FUNC(sed1330_device::command_w));
}
/*-------------------------------------------------
@@ -540,7 +540,7 @@ void px8_state::px8_slave_mem(address_map &map)
{
map.unmap_value_high();
map(0x0020, 0x0023).rw(FUNC(px8_state::gah40s_r), FUNC(px8_state::gah40s_w));
-// AM_RANGE(0x0024, 0x0027) AM_DEVREADWRITE_LEGACY(SED1320_TAG, )
+// map(0x0024, 0x0027).rw(SED1320_TAG, FUNC(sed1330_device::), FUNC(sed1330_device::));
map(0x0028, 0x0028).w(FUNC(px8_state::gah40s_ier_w));
map(0x8000, 0x97ff).ram().share("video_ram");
map(0x9800, 0xefff).noprw();