diff options
author | 2017-06-09 12:48:45 +0200 | |
---|---|---|
committer | 2017-06-09 12:48:45 +0200 | |
commit | e844b01154f1d57c9736b37c085ea0b9bbb15acb (patch) | |
tree | 272d3ad1d7c9562f8c01809ab3daaafc9442435a /src/devices/bus/kc/d002.h | |
parent | 0b546073e758e33abb12e738ab12aaf1377f2a3e (diff) |
device_add_mconfig up to devices/bus/l* (nw)
Diffstat (limited to 'src/devices/bus/kc/d002.h')
-rw-r--r-- | src/devices/bus/kc/d002.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/bus/kc/d002.h b/src/devices/bus/kc/d002.h index 48bd97336b2..7db1418bf5f 100644 --- a/src/devices/bus/kc/d002.h +++ b/src/devices/bus/kc/d002.h @@ -21,20 +21,15 @@ public: // construction/destruction kc_d002_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - // optional information overrides - virtual machine_config_constructor device_mconfig_additions() const override; - virtual ioport_constructor device_input_ports() const override; - - // interface callbacks - DECLARE_WRITE_LINE_MEMBER( out_irq_w ); - DECLARE_WRITE_LINE_MEMBER( out_nmi_w ); - DECLARE_WRITE_LINE_MEMBER( out_halt_w ); - protected: // device-level overrides virtual void device_start() override; virtual void device_reset() override; + // optional information overrides + virtual void device_add_mconfig(machine_config &config) override; + virtual ioport_constructor device_input_ports() const override; + // kcexp_interface overrides virtual void read(offs_t offset, uint8_t &data) override; virtual void write(offs_t offset, uint8_t data) override; @@ -43,6 +38,11 @@ protected: virtual DECLARE_WRITE_LINE_MEMBER( mei_w ) override; private: + // interface callbacks + DECLARE_WRITE_LINE_MEMBER( out_irq_w ); + DECLARE_WRITE_LINE_MEMBER( out_nmi_w ); + DECLARE_WRITE_LINE_MEMBER( out_halt_w ); + kcexp_slot_device *m_slot; // internal state |