summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gameplan.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-03-05 13:29:22 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-03-05 13:29:22 +0000
commitd2fd2856a7261992067f708299c3e7a37b9425f8 (patch)
treed656e2ab882173398c41b4bfb7b3f49c8e56130d /src/mame/includes/gameplan.h
parentcc299c4066918ffe0bf29940bbf0672f38b6c262 (diff)
Moved optional_device<screen_device> m_screen and optional_device<palette_device> m_palette out of driver.* (nw)
Diffstat (limited to 'src/mame/includes/gameplan.h')
-rw-r--r--src/mame/includes/gameplan.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gameplan.h b/src/mame/includes/gameplan.h
index ecef8e32bec..9839c431f84 100644
--- a/src/mame/includes/gameplan.h
+++ b/src/mame/includes/gameplan.h
@@ -40,7 +40,8 @@ public:
m_riot(*this, "riot"),
m_via_0(*this, "via6522_0"),
m_via_1(*this, "via6522_1"),
- m_via_2(*this, "via6522_2") { }
+ m_via_2(*this, "via6522_2"),
+ m_screen(*this, "screen") { }
/* machine state */
UINT8 m_current_port;
@@ -62,6 +63,7 @@ public:
required_device<via6522_device> m_via_0;
required_device<via6522_device> m_via_1;
required_device<via6522_device> m_via_2;
+ required_device<screen_device> m_screen;
DECLARE_WRITE8_MEMBER(io_select_w);
DECLARE_READ8_MEMBER(io_port_r);
DECLARE_WRITE_LINE_MEMBER(coin_w);