diff options
Diffstat (limited to 'src/devices/bus/isa/wdxt_gen.cpp')
-rw-r--r-- | src/devices/bus/isa/wdxt_gen.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/isa/wdxt_gen.cpp b/src/devices/bus/isa/wdxt_gen.cpp index 1c4ca395cbf..6771441c886 100644 --- a/src/devices/bus/isa/wdxt_gen.cpp +++ b/src/devices/bus/isa/wdxt_gen.cpp @@ -92,9 +92,10 @@ const tiny_rom_entry *wdxt_gen_device::device_rom_region() const // ADDRESS_MAP( wd1015_io ) //------------------------------------------------- -ADDRESS_MAP_START(wdxt_gen_device::wd1015_io) - AM_RANGE(0x00, 0xff) AM_DEVREADWRITE(WD11C00_17_TAG, wd11c00_17_device, read, write) -ADDRESS_MAP_END +void wdxt_gen_device::wd1015_io(address_map &map) +{ + map(0x00, 0xff).rw(WD11C00_17_TAG, FUNC(wd11c00_17_device::read), FUNC(wd11c00_17_device::write)); +} //------------------------------------------------- |