summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tx1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tx1.h')
-rw-r--r--src/mame/includes/tx1.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/mame/includes/tx1.h b/src/mame/includes/tx1.h
index da5040522e3..83bb6594333 100644
--- a/src/mame/includes/tx1.h
+++ b/src/mame/includes/tx1.h
@@ -174,29 +174,29 @@ private:
void tx1_update_state();
void buggyboy_update_state();
- DECLARE_READ16_MEMBER(tx1_math_r);
- DECLARE_WRITE16_MEMBER(tx1_math_w);
- DECLARE_READ16_MEMBER(tx1_spcs_rom_r);
- DECLARE_READ16_MEMBER(tx1_spcs_ram_r);
- DECLARE_WRITE16_MEMBER(tx1_spcs_ram_w);
- DECLARE_READ16_MEMBER(buggyboy_math_r);
- DECLARE_WRITE16_MEMBER(buggyboy_math_w);
- DECLARE_READ16_MEMBER(buggyboy_spcs_rom_r);
- DECLARE_WRITE16_MEMBER(buggyboy_spcs_ram_w);
- DECLARE_READ16_MEMBER(buggyboy_spcs_ram_r);
- DECLARE_READ16_MEMBER(tx1_crtc_r);
- DECLARE_WRITE16_MEMBER(tx1_crtc_w);
- DECLARE_WRITE16_MEMBER(tx1_bankcs_w);
- DECLARE_WRITE16_MEMBER(tx1_slincs_w);
- DECLARE_WRITE16_MEMBER(tx1_slock_w);
- DECLARE_WRITE16_MEMBER(tx1_scolst_w);
- DECLARE_WRITE16_MEMBER(tx1_flgcs_w);
- DECLARE_WRITE16_MEMBER(buggyboy_gas_w);
- DECLARE_WRITE16_MEMBER(buggyboy_sky_w);
- DECLARE_WRITE16_MEMBER(buggyboy_scolst_w);
- DECLARE_WRITE16_MEMBER(resume_math_w);
- DECLARE_WRITE16_MEMBER(halt_math_w);
- DECLARE_READ16_MEMBER(dipswitches_r);
+ uint16_t tx1_math_r(offs_t offset);
+ void tx1_math_w(offs_t offset, uint16_t data);
+ uint16_t tx1_spcs_rom_r(offs_t offset);
+ uint16_t tx1_spcs_ram_r(offs_t offset);
+ void tx1_spcs_ram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t buggyboy_math_r(offs_t offset);
+ void buggyboy_math_w(offs_t offset, uint16_t data);
+ uint16_t buggyboy_spcs_rom_r(offs_t offset);
+ void buggyboy_spcs_ram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t buggyboy_spcs_ram_r(offs_t offset);
+ uint16_t tx1_crtc_r();
+ void tx1_crtc_w(offs_t offset, uint16_t data);
+ void tx1_bankcs_w(offs_t offset, uint16_t data);
+ void tx1_slincs_w(offs_t offset, uint16_t data);
+ void tx1_slock_w(uint16_t data);
+ void tx1_scolst_w(uint16_t data);
+ void tx1_flgcs_w(uint16_t data);
+ void buggyboy_gas_w(offs_t offset, uint16_t data);
+ void buggyboy_sky_w(uint16_t data);
+ void buggyboy_scolst_w(uint16_t data);
+ void resume_math_w(uint16_t data);
+ void halt_math_w(uint16_t data);
+ u16 dipswitches_r();
DECLARE_MACHINE_RESET(tx1);
DECLARE_VIDEO_START(tx1);
void tx1_palette(palette_device &palette) const;