summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tek440x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tek440x.cpp')
-rw-r--r--src/mame/drivers/tek440x.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/tek440x.cpp b/src/mame/drivers/tek440x.cpp
index 6c0191487e7..fda9931f5fc 100644
--- a/src/mame/drivers/tek440x.cpp
+++ b/src/mame/drivers/tek440x.cpp
@@ -67,6 +67,9 @@ public:
m_vram(*this, "vram")
{}
+ void tek4404(machine_config &config);
+
+private:
virtual void machine_start() override;
virtual void machine_reset() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -74,7 +77,6 @@ public:
required_device<m6502_device> m_fdccpu;
required_shared_ptr<uint16_t> m_mainram;
required_shared_ptr<uint16_t> m_vram;
- void tek4404(machine_config &config);
void fdccpu_map(address_map &map);
void maincpu_map(address_map &map);
};