diff options
author | 2018-02-01 10:04:01 +0100 | |
---|---|---|
committer | 2018-02-12 10:04:52 +0100 | |
commit | c5219643162cb7d2a8688425a09008d28c8e2437 (patch) | |
tree | f2775ca3b1770ab0d3fb568f0bdd6d9212c68bf6 /src/devices/bus/newbrain | |
parent | 09b6ce46873b38de9030a3c0378ff327f17af881 (diff) |
API change: Memory maps are now methods of the owner class [O. Galibert]
Also, a lot more freedom happened, that's going to be more visible
soon.
Diffstat (limited to 'src/devices/bus/newbrain')
-rw-r--r-- | src/devices/bus/newbrain/fdc.cpp | 4 | ||||
-rw-r--r-- | src/devices/bus/newbrain/fdc.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/bus/newbrain/fdc.cpp b/src/devices/bus/newbrain/fdc.cpp index 33e81c93ac3..15dce82487b 100644 --- a/src/devices/bus/newbrain/fdc.cpp +++ b/src/devices/bus/newbrain/fdc.cpp @@ -69,7 +69,7 @@ const tiny_rom_entry *newbrain_fdc_device::device_rom_region() const // ADDRESS_MAP( newbrain_fdc_mem ) //------------------------------------------------- -static ADDRESS_MAP_START( newbrain_fdc_mem, AS_PROGRAM, 8, newbrain_fdc_device ) +ADDRESS_MAP_START(newbrain_fdc_device::newbrain_fdc_mem) ADDRESS_MAP_UNMAP_HIGH AM_RANGE(0x0000, 0x1fff) AM_ROM ADDRESS_MAP_END @@ -79,7 +79,7 @@ ADDRESS_MAP_END // ADDRESS_MAP( newbrain_fdc_io ) //------------------------------------------------- -static ADDRESS_MAP_START( newbrain_fdc_io, AS_IO, 8, newbrain_fdc_device ) +ADDRESS_MAP_START(newbrain_fdc_device::newbrain_fdc_io) ADDRESS_MAP_UNMAP_HIGH ADDRESS_MAP_GLOBAL_MASK(0x71) AM_RANGE(0x00, 0x01) AM_MIRROR(0x10) AM_DEVICE(UPD765_TAG, upd765a_device, map) diff --git a/src/devices/bus/newbrain/fdc.h b/src/devices/bus/newbrain/fdc.h index 885ce5b9365..4b69d607532 100644 --- a/src/devices/bus/newbrain/fdc.h +++ b/src/devices/bus/newbrain/fdc.h @@ -33,6 +33,8 @@ public: DECLARE_READ8_MEMBER( fdc_control_r ); DECLARE_WRITE8_MEMBER( io_dec_w ); + void newbrain_fdc_io(address_map &map); + void newbrain_fdc_mem(address_map &map); protected: // device-level overrides virtual void device_start() override; |