summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zms8085.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zms8085.cpp')
-rw-r--r--src/mame/drivers/zms8085.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/zms8085.cpp b/src/mame/drivers/zms8085.cpp
index a518ad00253..c4ae07a89e6 100644
--- a/src/mame/drivers/zms8085.cpp
+++ b/src/mame/drivers/zms8085.cpp
@@ -32,6 +32,9 @@ public:
, m_p_chargen(*this, "chargen")
{ }
+ void zephyr(machine_config &config);
+
+private:
u32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
DECLARE_READ8_MEMBER(special_r);
@@ -39,10 +42,9 @@ public:
virtual void machine_start() override;
- void zephyr(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
required_device<cpu_device> m_maincpu;
required_device<ay51013_device> m_uart;
required_device<rs232_port_device> m_rs232;