summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/comx_eb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/comx_eb.c')
-rw-r--r--src/mess/machine/comx_eb.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mess/machine/comx_eb.c b/src/mess/machine/comx_eb.c
index 8bb8ebc7d0b..4221558db2a 100644
--- a/src/mess/machine/comx_eb.c
+++ b/src/mess/machine/comx_eb.c
@@ -383,23 +383,3 @@ void comx_eb_device::comx_io_w(offs_t offset, UINT8 data)
}
}
}
-
-
-//-------------------------------------------------
-// comx_screen_update - screen update
-//-------------------------------------------------
-
-UINT32 comx_eb_device::comx_screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
-{
- bool value = false;
-
- for (int slot = 0; slot < MAX_EB_SLOTS; slot++)
- {
- if (BIT(m_select, slot) && m_expansion_slot[slot] != NULL)
- {
- m_expansion_slot[slot]->screen_update(screen, bitmap, cliprect);
- }
- }
-
- return value;
-}