summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/xerox820.h
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-13 08:48:50 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-13 08:48:50 +0000
commit9f0f40759bf3712bf81ef55fc89933f16fe067f5 (patch)
tree23198803335cf2b626e12679e4505e363cc87c5b /src/mess/includes/xerox820.h
parent0835d2bfc6f80b5bf1bad8df991c174135096971 (diff)
Removed pseudo-palettes from video/generic.c. All drivers that were using them now have an actual palette [Alex Jackson]
Diffstat (limited to 'src/mess/includes/xerox820.h')
-rw-r--r--src/mess/includes/xerox820.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/includes/xerox820.h b/src/mess/includes/xerox820.h
index 1276305b996..02a96e1b9c5 100644
--- a/src/mess/includes/xerox820.h
+++ b/src/mess/includes/xerox820.h
@@ -51,6 +51,7 @@ public:
m_sio(*this, Z80SIO_TAG),
m_fdc(*this, FD1771_TAG),
m_ram(*this, RAM_TAG),
+ m_palette(*this, "palette"),
m_floppy0(*this, FD1771_TAG":0"),
m_floppy1(*this, FD1771_TAG":1"),
m_rom(*this, Z80_TAG),
@@ -73,6 +74,7 @@ public:
required_device<z80sio0_device> m_sio;
required_device<wd_fdc_t> m_fdc;
required_device<ram_device> m_ram;
+ required_device<palette_device> m_palette;
required_device<floppy_connector> m_floppy0;
required_device<floppy_connector> m_floppy1;
required_memory_region m_rom;