summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-25 20:53:59 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-25 20:53:59 +0100
commitc6d27c753f68cb22d8f88d031ae0645ab80c72b6 (patch)
tree814fb384b0024aa03da79a806d7674624abace47 /src/devices/video
parenta8ef53fa51dcc81dbb9a647dfc1777ef72ee2f93 (diff)
cleanups (nw)
Diffstat (limited to 'src/devices/video')
-rw-r--r--src/devices/video/msm6222b.h1
-rw-r--r--src/devices/video/snes_ppu.h1
-rw-r--r--src/devices/video/upd7220.h4
3 files changed, 0 insertions, 6 deletions
diff --git a/src/devices/video/msm6222b.h b/src/devices/video/msm6222b.h
index 50268e9e0f1..d86bcd63629 100644
--- a/src/devices/video/msm6222b.h
+++ b/src/devices/video/msm6222b.h
@@ -27,7 +27,6 @@ public:
void control_w(UINT8 data);
UINT8 control_r();
void data_w(UINT8 data);
- UINT8 data_r();
// Character n bits are at bytes n*16..n*16+7 when 8-high, +10 when 11-high. Only the low 5 bits are used.
// In one line mode n = 0..79. In two line mode first line is 0..39 and second is 40..79.
diff --git a/src/devices/video/snes_ppu.h b/src/devices/video/snes_ppu.h
index 0fa3f830aef..68634c5db60 100644
--- a/src/devices/video/snes_ppu.h
+++ b/src/devices/video/snes_ppu.h
@@ -256,7 +256,6 @@ public:
void set_latch_hv(INT16 x, INT16 y);
void dynamic_res_change();
inline UINT32 get_vram_address();
- UINT8 dbg_video(UINT16 curline);
UINT8 read(address_space &space, UINT32 offset, UINT8 wrio_bit7);
void write(address_space &space, UINT32 offset, UINT8 data);
diff --git a/src/devices/video/upd7220.h b/src/devices/video/upd7220.h
index 3f96783f7ec..dbde33a93f8 100644
--- a/src/devices/video/upd7220.h
+++ b/src/devices/video/upd7220.h
@@ -101,10 +101,6 @@ public:
DECLARE_WRITE_LINE_MEMBER( ext_sync_w );
DECLARE_WRITE_LINE_MEMBER( lpen_w );
- DECLARE_WRITE8_MEMBER( bank_w );
- DECLARE_READ8_MEMBER( vram_r );
- DECLARE_WRITE8_MEMBER( vram_w );
-
UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
virtual const rom_entry *device_rom_region() const override;
virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override;