summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/tc009xlvc.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-02-09 22:49:40 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-02-09 22:49:40 -0500
commitdddf09d26c8868088889eb548ed5afd317f72aaf (patch)
treec0e1d43527f6f927bd02e9d9dd7501364c071b41 /src/devices/machine/tc009xlvc.cpp
parent30fcbaae7af23f8bf8375b7efbecfe80156be3a2 (diff)
Remove device_config_complete from numerous devices that don't really need it (nw)
Diffstat (limited to 'src/devices/machine/tc009xlvc.cpp')
-rw-r--r--src/devices/machine/tc009xlvc.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/devices/machine/tc009xlvc.cpp b/src/devices/machine/tc009xlvc.cpp
index c6ba0280728..1bd2f989cc1 100644
--- a/src/devices/machine/tc009xlvc.cpp
+++ b/src/devices/machine/tc009xlvc.cpp
@@ -183,17 +183,6 @@ void tc0091lvc_device::static_set_gfxdecode_tag(device_t &device, const char *ta
}
-void tc0091lvc_device::device_config_complete()
-{
-// int address_bits = 20;
-
-// m_space_config = address_space_config("janshi_vdp", ENDIANNESS_LITTLE, 8, address_bits, 0, *ADDRESS_MAP_NAME(tc0091lvc_map8));
-}
-
-void tc0091lvc_device::device_validity_check(validity_checker &valid) const
-{
-}
-
TILE_GET_INFO_MEMBER(tc0091lvc_device::get_bg0_tile_info)
{
int attr = m_vram0[2 * tile_index + 1];
@@ -289,10 +278,6 @@ void tc0091lvc_device::device_start()
m_gfxdecode->set_gfx(m_gfx_index, std::make_unique<gfx_element>(palette, char_layout, (uint8_t *)m_pcg_ram, 0, palette.entries() / 16, 0));
}
-void tc0091lvc_device::device_reset()
-{
-}
-
const address_space_config *tc0091lvc_device::memory_space_config(address_spacenum spacenum) const
{
return (spacenum == 0) ? &m_space_config : nullptr;