summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/vrc5074.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/vrc5074.h')
-rw-r--r--src/devices/machine/vrc5074.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/machine/vrc5074.h b/src/devices/machine/vrc5074.h
index 8b31e2c4f54..375a02677b5 100644
--- a/src/devices/machine/vrc5074.h
+++ b/src/devices/machine/vrc5074.h
@@ -67,11 +67,14 @@ public:
protected:
address_space *m_cpu_space;
- virtual const address_space_config *memory_space_config(address_spacenum spacenum) const override;
+ virtual std::vector<std::pair<int, const address_space_config *>> memory_space_config() const override;
virtual void device_start() override;
virtual void device_reset() override;
private:
+ static constexpr int AS_PCI_MEM = 1;
+ static constexpr int AS_PCI_IO = 2;
+
mips3_device *m_cpu;
const char *cpu_tag;
int m_sdram_size[2];