diff options
author | 2018-02-25 14:18:39 +0100 | |
---|---|---|
committer | 2018-02-25 14:18:39 +0100 | |
commit | 9cc815af31f4d8a406349d35b0871328a1471e08 (patch) | |
tree | 6ade99610cf8234826cf6cd2c80ea8d4a1646439 /src/devices/video/mb_vcu.cpp | |
parent | f07b93b0532d379eb542ca507b103e71196e9147 (diff) |
de-staticify initializations for src/devices/video (#3270)
Diffstat (limited to 'src/devices/video/mb_vcu.cpp')
-rw-r--r-- | src/devices/video/mb_vcu.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/devices/video/mb_vcu.cpp b/src/devices/video/mb_vcu.cpp index edbef283be4..2593bb30b2b 100644 --- a/src/devices/video/mb_vcu.cpp +++ b/src/devices/video/mb_vcu.cpp @@ -35,16 +35,6 @@ TODO: // device type definition DEFINE_DEVICE_TYPE(MB_VCU, mb_vcu_device, "mb_vcu", "Mazer Blazer custom VCU") -//------------------------------------------------- -// static_set_palette_tag: Set the tag of the -// palette device -//------------------------------------------------- - -void mb_vcu_device::static_set_palette_tag(device_t &device, const char *tag) -{ - downcast<mb_vcu_device &>(device).m_palette.set_tag(tag); -} - ADDRESS_MAP_START(mb_vcu_device::mb_vcu_vram) AM_RANGE(0x00000,0x7ffff) AM_RAM // enough for a 256x256x4 x 2 pages of framebuffer with 4 layers (TODO: doubled for simplicity) |