summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dooyong.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dooyong.cpp')
-rw-r--r--src/mame/video/dooyong.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/mame/video/dooyong.cpp b/src/mame/video/dooyong.cpp
index e1d3986687a..7dc8c1f5a62 100644
--- a/src/mame/video/dooyong.cpp
+++ b/src/mame/video/dooyong.cpp
@@ -35,16 +35,6 @@ dooyong_tilemap_device_base::dooyong_tilemap_device_base(
{
}
-void dooyong_tilemap_device_base::set_gfxdecode_tag(char const *tag)
-{
- m_gfxdecode.set_tag(tag);
-}
-
-void dooyong_tilemap_device_base::set_gfxnum(int gfxnum)
-{
- m_gfxnum = gfxnum;
-}
-
void dooyong_tilemap_device_base::draw(screen_device &screen, bitmap_ind16 &dest, rectangle const &cliprect, uint32_t flags, uint8_t priority)
{
m_tilemap->draw(screen, dest, cliprect, flags, priority);
@@ -83,28 +73,6 @@ dooyong_rom_tilemap_device::dooyong_rom_tilemap_device(
{
}
-void dooyong_rom_tilemap_device::set_tilerom_tag(char const *tag)
-{
- m_tilerom.set_tag(tag);
-}
-
-void dooyong_rom_tilemap_device::set_tilerom_offset(int offset)
-{
- m_tilerom_offset = offset;
-}
-
-void dooyong_rom_tilemap_device::set_transparent_pen(unsigned pen)
-{
- m_transparent_pen = pen;
-}
-
-void dooyong_rom_tilemap_device::set_primella_code_bits(unsigned bits)
-{
- m_primella_code_mask = (1U << bits) - 1U;
- m_primella_color_mask = ((1U << 14) - 1) & ~m_primella_code_mask;
- m_primella_color_shift = bits;
-}
-
WRITE8_MEMBER(dooyong_rom_tilemap_device::ctrl_w)
{
offset &= 0x07U;
@@ -210,16 +178,6 @@ rshark_rom_tilemap_device::rshark_rom_tilemap_device(machine_config const &mconf
m_rows = 32;
}
-void rshark_rom_tilemap_device::set_colorrom_tag(char const *tag)
-{
- m_colorrom.set_tag(tag);
-}
-
-void rshark_rom_tilemap_device::set_colorrom_offset(int offset)
-{
- m_colorrom_offset = offset;
-}
-
void rshark_rom_tilemap_device::device_start()
{
dooyong_rom_tilemap_device::device_start();