summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/peb/bwg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99/peb/bwg.h')
-rw-r--r--src/devices/bus/ti99/peb/bwg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/ti99/peb/bwg.h b/src/devices/bus/ti99/peb/bwg.h
index eb11d319410..59afa523eed 100644
--- a/src/devices/bus/ti99/peb/bwg.h
+++ b/src/devices/bus/ti99/peb/bwg.h
@@ -36,23 +36,23 @@ public:
DECLARE_READ8Z_MEMBER(crureadz) override;
DECLARE_WRITE8_MEMBER(cruwrite) override;
- DECLARE_FLOPPY_FORMATS( floppy_formats );
-
- DECLARE_WRITE_LINE_MEMBER( fdc_irq_w );
- DECLARE_WRITE_LINE_MEMBER( fdc_drq_w );
-
protected:
void device_start() override;
void device_reset() override;
void device_config_complete() override;
const tiny_rom_entry *device_rom_region() const override;
- machine_config_constructor device_mconfig_additions() const override;
+ virtual void device_add_mconfig(machine_config &config) override;
ioport_constructor device_input_ports() const override;
private:
void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
+ DECLARE_FLOPPY_FORMATS( floppy_formats );
+
+ DECLARE_WRITE_LINE_MEMBER( fdc_irq_w );
+ DECLARE_WRITE_LINE_MEMBER( fdc_drq_w );
+
// Debugger accessors
void debug_read(offs_t offset, uint8_t* value);
void debug_write(offs_t offset, uint8_t data);