summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ax20.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ax20.cpp')
-rw-r--r--src/mame/drivers/ax20.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/ax20.cpp b/src/mame/drivers/ax20.cpp
index d454d4192bc..bcee6d7cd3e 100644
--- a/src/mame/drivers/ax20.cpp
+++ b/src/mame/drivers/ax20.cpp
@@ -33,6 +33,9 @@ public:
m_palette(*this, "palette"),
m_fdc(*this, "fdc") { }
+ void ax20(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_shared_ptr<uint8_t> m_p_vram;
required_device<gfxdecode_device> m_gfxdecode;
@@ -45,7 +48,7 @@ public:
DECLARE_READ8_MEMBER(unk_r);
DECLARE_WRITE8_MEMBER(tc_w);
DECLARE_WRITE8_MEMBER(ctl_w);
- void ax20(machine_config &config);
+
void ax20_io(address_map &map);
void ax20_map(address_map &map);
};