summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/att4425.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/att4425.cpp')
-rw-r--r--src/mame/drivers/att4425.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mame/drivers/att4425.cpp b/src/mame/drivers/att4425.cpp
index ac23737d76b..72ee85b3b7c 100644
--- a/src/mame/drivers/att4425.cpp
+++ b/src/mame/drivers/att4425.cpp
@@ -48,8 +48,11 @@ public:
, m_p_videoram(*this, "videoram")
, m_p_chargen(*this, "chargen")
, m_screen(*this, SCREEN_TAG)
- { }
+ { }
+ void att4425(machine_config &config);
+
+protected:
DECLARE_WRITE8_MEMBER(port10_w);
DECLARE_WRITE8_MEMBER(port14_w);
DECLARE_READ8_MEMBER(port14_r);
@@ -60,13 +63,12 @@ public:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void att4425(machine_config &config);
- void att4425_io(address_map &map);
- void att4425_mem(address_map &map);
-private:
virtual void machine_start() override;
virtual void video_start() override;
+ void att4425_io(address_map &map);
+ void att4425_mem(address_map &map);
+private:
required_device<z80_device> m_maincpu;
required_device<i8251_device> m_i8251;
required_device<z80sio_device> m_sio;