summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cbus/mpu_pc98.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cbus/mpu_pc98.h')
-rw-r--r--src/devices/bus/cbus/mpu_pc98.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/bus/cbus/mpu_pc98.h b/src/devices/bus/cbus/mpu_pc98.h
index 9d0b8991ad5..798f8b8f11e 100644
--- a/src/devices/bus/cbus/mpu_pc98.h
+++ b/src/devices/bus/cbus/mpu_pc98.h
@@ -19,7 +19,7 @@ class mpu_pc98_device : public device_t
public:
// construction/destruction
mpu_pc98_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void map(address_map &map);
+
protected:
// device-level overrides
virtual void device_start() override;
@@ -32,6 +32,8 @@ private:
// called back by the MPU401 core to set the IRQ line state
DECLARE_WRITE_LINE_MEMBER(mpu_irq_out);
+ void map(address_map &map);
+
required_device<pc9801_slot_device> m_bus;
required_device<mpu401_device> m_mpu401;
};