diff options
author | 2018-09-06 18:23:16 +0200 | |
---|---|---|
committer | 2018-09-06 18:23:16 +0200 | |
commit | 7bc9740ca7d842359a6af4b5f11f5410f0d6a9a3 (patch) | |
tree | c878faff4bd1596b43754756bfc70b96d948c84e /src/devices/bus/bbc/fdc/opus.h | |
parent | f0f5b81528236e3bf2d815e20bbb36a1728b0bba (diff) |
wd_fdc: removed MCFG macros (nw)
Diffstat (limited to 'src/devices/bus/bbc/fdc/opus.h')
-rw-r--r-- | src/devices/bus/bbc/fdc/opus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/fdc/opus.h b/src/devices/bus/bbc/fdc/opus.h index 6b145754f0b..64ed0c61fe6 100644 --- a/src/devices/bus/bbc/fdc/opus.h +++ b/src/devices/bus/bbc/fdc/opus.h @@ -71,12 +71,13 @@ protected: virtual void device_start() override; virtual void device_reset() override; -private: - required_memory_region m_dfs_rom; required_device<wd_fdc_device_base> m_fdc; required_device<floppy_connector> m_floppy0; optional_device<floppy_connector> m_floppy1; +private: + required_memory_region m_dfs_rom; + int m_drive_control; }; |