diff options
author | 2018-02-16 17:45:06 +0100 | |
---|---|---|
committer | 2018-02-16 17:45:06 +0100 | |
commit | b0bc2583cb8d1257fe8114220b8a4131fbeb8e40 (patch) | |
tree | bf832fc618f532bc2ded66bcac35e63de5b1bad8 /src/devices/video/mos6566.h | |
parent | 8c753984e11586e7ac5ba79f2d5b1ea909d65e61 (diff) |
devices/video: some private-ization (nw)
Diffstat (limited to 'src/devices/video/mos6566.h')
-rw-r--r-- | src/devices/video/mos6566.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/video/mos6566.h b/src/devices/video/mos6566.h index dd9038b2610..2b0e6fd0d62 100644 --- a/src/devices/video/mos6566.h +++ b/src/devices/video/mos6566.h @@ -233,8 +233,6 @@ public: uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - void mos6566_colorram_map(address_map &map); - void mos6566_videoram_map(address_map &map); protected: enum { @@ -283,6 +281,9 @@ protected: void draw_graphics(); void draw_sprites(); + void mos6566_colorram_map(address_map &map); + void mos6566_videoram_map(address_map &map); + int m_icount; const int m_variant; |