summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/kingobox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/kingobox.h')
-rw-r--r--src/mame/includes/kingobox.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/kingobox.h b/src/mame/includes/kingobox.h
index 123ef8da5ab..ccd6c86e15f 100644
--- a/src/mame/includes/kingobox.h
+++ b/src/mame/includes/kingobox.h
@@ -58,15 +58,15 @@ private:
/* devices */
required_device<cpu_device> m_video_cpu;
required_device<cpu_device> m_sprite_cpu;
- DECLARE_WRITE8_MEMBER(video_interrupt_w);
- DECLARE_WRITE8_MEMBER(sprite_interrupt_w);
- DECLARE_WRITE8_MEMBER(scroll_interrupt_w);
- DECLARE_WRITE8_MEMBER(sound_command_w);
- DECLARE_WRITE8_MEMBER(kingofb_videoram_w);
- DECLARE_WRITE8_MEMBER(kingofb_colorram_w);
- DECLARE_WRITE8_MEMBER(kingofb_videoram2_w);
- DECLARE_WRITE8_MEMBER(kingofb_colorram2_w);
- DECLARE_WRITE8_MEMBER(kingofb_f800_w);
+ void video_interrupt_w(uint8_t data);
+ void sprite_interrupt_w(uint8_t data);
+ void scroll_interrupt_w(uint8_t data);
+ void sound_command_w(uint8_t data);
+ void kingofb_videoram_w(offs_t offset, uint8_t data);
+ void kingofb_colorram_w(offs_t offset, uint8_t data);
+ void kingofb_videoram2_w(offs_t offset, uint8_t data);
+ void kingofb_colorram2_w(offs_t offset, uint8_t data);
+ void kingofb_f800_w(uint8_t data);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(ringking_get_bg_tile_info);