summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ms1_tmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ms1_tmap.h')
-rw-r--r--src/mame/video/ms1_tmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/ms1_tmap.h b/src/mame/video/ms1_tmap.h
index aaf722b62ca..30fac0c3595 100644
--- a/src/mame/video/ms1_tmap.h
+++ b/src/mame/video/ms1_tmap.h
@@ -43,9 +43,9 @@ public:
void set_colorbase(uint16_t colorbase) { m_colorbase = colorbase; }
// memory handlers
- DECLARE_WRITE16_MEMBER(write);
- DECLARE_READ16_MEMBER(scroll_r);
- DECLARE_WRITE16_MEMBER(scroll_w);
+ void write(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t scroll_r(offs_t offset);
+ void scroll_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
// drawing and layer control
void draw(screen_device &screen, bitmap_ind16 &dest, const rectangle &cliprect, uint32_t flags, uint8_t priority = 0, uint8_t priority_mask = 0xff);