diff options
author | 2017-06-07 18:58:48 +0200 | |
---|---|---|
committer | 2017-06-07 18:58:48 +0200 | |
commit | fd1bb20b1b81daeb7ab925fb4f9e82161e2f2e4c (patch) | |
tree | abe9b9828baaa83d87cbd8c8b434cc174648b8b5 /src/devices/bus/c64/reu.h | |
parent | 7b2e155728f7725a0c62d9abb2b31be5a00eea91 (diff) |
some more device_add_mconfig in devices/bus (nw)
Diffstat (limited to 'src/devices/bus/c64/reu.h')
-rw-r--r-- | src/devices/bus/c64/reu.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/bus/c64/reu.h b/src/devices/bus/c64/reu.h index 7ace9c7b2a9..dd8b9e32d5f 100644 --- a/src/devices/bus/c64/reu.h +++ b/src/devices/bus/c64/reu.h @@ -28,10 +28,6 @@ class c64_reu_cartridge_device : public device_t, public device_c64_expansion_card_interface { -public: - // optional information overrides - virtual machine_config_constructor device_mconfig_additions() const override; - protected: enum { @@ -47,6 +43,9 @@ protected: virtual void device_start() override; virtual void device_reset() override; + // optional information overrides + virtual void device_add_mconfig(machine_config &config) override; + // device_c64_expansion_card_interface overrides virtual uint8_t c64_cd_r(address_space &space, offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) override; virtual void c64_cd_w(address_space &space, offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) override; |