summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/msx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/msx.h')
-rw-r--r--src/mame/includes/msx.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/msx.h b/src/mame/includes/msx.h
index e53a87532ba..7d186a84657 100644
--- a/src/mame/includes/msx.h
+++ b/src/mame/includes/msx.h
@@ -288,15 +288,15 @@ protected:
virtual void machine_reset() override;
virtual void device_post_load() override;
- DECLARE_WRITE8_MEMBER(msx_sec_slot_w);
- DECLARE_READ8_MEMBER(msx_sec_slot_r);
- DECLARE_READ8_MEMBER(msx_kanji_r);
- DECLARE_WRITE8_MEMBER(msx_kanji_w);
+ void msx_sec_slot_w(uint8_t data);
+ uint8_t msx_sec_slot_r();
+ uint8_t msx_kanji_r(offs_t offset);
+ void msx_kanji_w(offs_t offset, uint8_t data);
void msx_ppi_port_a_w(uint8_t data);
void msx_ppi_port_c_w(uint8_t data);
uint8_t msx_ppi_port_b_r();
- DECLARE_READ8_MEMBER(msx_mem_read);
- DECLARE_WRITE8_MEMBER(msx_mem_write);
+ uint8_t msx_mem_read(offs_t offset);
+ void msx_mem_write(offs_t offset, uint8_t data);
uint8_t msx_psg_port_a_r();
uint8_t msx_psg_port_b_r();
void msx_psg_port_a_w(uint8_t data);
@@ -491,11 +491,11 @@ private:
void msx_ym2413(machine_config &config);
void msx2_64kb_vram(machine_config &config);
- DECLARE_READ8_MEMBER(msx_rtc_reg_r);
- DECLARE_WRITE8_MEMBER(msx_rtc_reg_w);
- DECLARE_WRITE8_MEMBER(msx_rtc_latch_w);
- DECLARE_READ8_MEMBER(msx_switched_r);
- DECLARE_WRITE8_MEMBER(msx_switched_w);
+ uint8_t msx_rtc_reg_r();
+ void msx_rtc_reg_w(uint8_t data);
+ void msx_rtc_latch_w(uint8_t data);
+ uint8_t msx_switched_r(offs_t offset);
+ void msx_switched_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(turbo_w);
void msx2_io_map(address_map &map);