summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mbc55x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mbc55x.cpp')
-rw-r--r--src/mame/video/mbc55x.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/mame/video/mbc55x.cpp b/src/mame/video/mbc55x.cpp
index c9ab2aac277..f9f7f50cb49 100644
--- a/src/mame/video/mbc55x.cpp
+++ b/src/mame/video/mbc55x.cpp
@@ -163,40 +163,6 @@ WRITE_LINE_MEMBER( mbc55x_state::vid_vsync_changed )
{
}
-static constexpr rgb_t mbc55x_pens[SCREEN_NO_COLOURS]
-{
- // normal brightness
- { 0x00, 0x00, 0x00 }, // black
- { 0x00, 0x00, 0x80 }, // blue
- { 0x00, 0x80, 0x00 }, // green
- { 0x00, 0x80, 0x80 }, // cyan
- { 0x80, 0x00, 0x00 }, // red
- { 0x80, 0x00, 0x80 }, // magenta
- { 0x80, 0x80, 0x00 }, // yellow
- { 0x80, 0x80, 0x80 } // light grey
-};
-
-void mbc55x_state::mbc55x_palette(palette_device &palette) const
-{
- logerror("initializing palette\n");
-
- palette.set_pen_colors(0, mbc55x_pens);
-}
-
-/* Video ram page register */
-
-uint8_t mbc55x_state::vram_page_r()
-{
- return m_vram_page;
-}
-
-void mbc55x_state::vram_page_w(uint8_t data)
-{
- logerror("%s : set vram page to %02X\n", machine().describe_context(),data);
-
- m_vram_page=data;
-}
-
void mbc55x_state::video_start()
{
m_debug_video=0;