summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thief.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thief.h')
-rw-r--r--src/mame/includes/thief.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/thief.h b/src/mame/includes/thief.h
index 2ec835888cf..94ca9754e4b 100644
--- a/src/mame/includes/thief.h
+++ b/src/mame/includes/thief.h
@@ -40,17 +40,17 @@ private:
coprocessor_t m_coprocessor;
void thief_input_select_w(uint8_t data);
uint8_t thief_io_r();
- DECLARE_READ8_MEMBER(thief_context_ram_r);
- DECLARE_WRITE8_MEMBER(thief_context_ram_w);
- DECLARE_WRITE8_MEMBER(thief_context_bank_w);
- DECLARE_WRITE8_MEMBER(thief_video_control_w);
- DECLARE_WRITE8_MEMBER(thief_color_map_w);
- DECLARE_WRITE8_MEMBER(thief_color_plane_w);
- DECLARE_READ8_MEMBER(thief_videoram_r);
- DECLARE_WRITE8_MEMBER(thief_videoram_w);
- DECLARE_WRITE8_MEMBER(thief_blit_w);
- DECLARE_READ8_MEMBER(thief_coprocessor_r);
- DECLARE_WRITE8_MEMBER(thief_coprocessor_w);
+ uint8_t thief_context_ram_r(offs_t offset);
+ void thief_context_ram_w(offs_t offset, uint8_t data);
+ void thief_context_bank_w(uint8_t data);
+ void thief_video_control_w(uint8_t data);
+ void thief_color_map_w(offs_t offset, uint8_t data);
+ void thief_color_plane_w(uint8_t data);
+ uint8_t thief_videoram_r(offs_t offset);
+ void thief_videoram_w(offs_t offset, uint8_t data);
+ void thief_blit_w(uint8_t data);
+ uint8_t thief_coprocessor_r(offs_t offset);
+ void thief_coprocessor_w(offs_t offset, uint8_t data);
void tape_control_w(uint8_t data);
virtual void video_start() override;
uint32_t screen_update_thief(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);