summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/gt64xxx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/gt64xxx.h')
-rw-r--r--src/devices/machine/gt64xxx.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/machine/gt64xxx.h b/src/devices/machine/gt64xxx.h
index 192672b8c3a..3b713985530 100644
--- a/src/devices/machine/gt64xxx.h
+++ b/src/devices/machine/gt64xxx.h
@@ -107,12 +107,15 @@ 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;
+
struct galileo_timer
{
emu_timer * timer;