summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/guab.c
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/drivers/guab.c
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/drivers/guab.c')
-rw-r--r--src/mame/drivers/guab.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/guab.c b/src/mame/drivers/guab.c
index 419152c1b65..129db5480bd 100644
--- a/src/mame/drivers/guab.c
+++ b/src/mame/drivers/guab.c
@@ -79,12 +79,14 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_tms34061(*this, "tms34061"),
- m_sn(*this, "snsnd") { }
+ m_sn(*this, "snsnd"),
+ m_palette(*this, "palette") { }
/* devices */
required_device<cpu_device> m_maincpu;
required_device<tms34061_device> m_tms34061;
required_device<sn76489_device> m_sn;
+ required_device<palette_device> m_palette;
struct ef9369 m_pal;
emu_timer *m_fdc_timer;