summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mbc55x.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mbc55x.h')
-rw-r--r--src/mame/includes/mbc55x.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/mbc55x.h b/src/mame/includes/mbc55x.h
index 2a703a1e6fa..77fd7e28caf 100644
--- a/src/mame/includes/mbc55x.h
+++ b/src/mame/includes/mbc55x.h
@@ -102,16 +102,16 @@ protected:
private:
DECLARE_FLOPPY_FORMATS(floppy_formats);
- DECLARE_READ8_MEMBER(iodecode_r);
- DECLARE_WRITE8_MEMBER(iodecode_w);
-
- DECLARE_READ8_MEMBER(vram_page_r);
- DECLARE_WRITE8_MEMBER(vram_page_w);
- DECLARE_READ8_MEMBER(game_io_r);
- DECLARE_WRITE8_MEMBER(game_io_w);
- DECLARE_READ8_MEMBER(printer_status_r);
- DECLARE_WRITE8_MEMBER(printer_data_w);
- DECLARE_WRITE8_MEMBER(disk_select_w);
+ uint8_t iodecode_r(offs_t offset);
+ void iodecode_w(offs_t offset, uint8_t data);
+
+ uint8_t vram_page_r();
+ void vram_page_w(uint8_t data);
+ uint8_t game_io_r();
+ void game_io_w(uint8_t data);
+ uint8_t printer_status_r();
+ void printer_data_w(uint8_t data);
+ void disk_select_w(uint8_t data);
DECLARE_WRITE_LINE_MEMBER(printer_busy_w);
DECLARE_WRITE_LINE_MEMBER(printer_paper_end_w);
DECLARE_WRITE_LINE_MEMBER(printer_select_w);