summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/lordgun.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/lordgun.h')
-rw-r--r--src/mame/includes/lordgun.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/lordgun.h b/src/mame/includes/lordgun.h
index 633d6935325..b7567c2f4f9 100644
--- a/src/mame/includes/lordgun.h
+++ b/src/mame/includes/lordgun.h
@@ -72,18 +72,18 @@ private:
std::unique_ptr<bitmap_ind16> m_bitmaps[5];
uint16_t m_protection_data;
- DECLARE_WRITE16_MEMBER(lordgun_protection_w);
- DECLARE_READ16_MEMBER(lordgun_protection_r);
- DECLARE_WRITE16_MEMBER(aliencha_protection_w);
- DECLARE_READ16_MEMBER(aliencha_protection_r);
+ void lordgun_protection_w(offs_t offset, uint16_t data);
+ uint16_t lordgun_protection_r(offs_t offset);
+ void aliencha_protection_w(offs_t offset, uint16_t data);
+ uint16_t aliencha_protection_r(offs_t offset);
- DECLARE_WRITE16_MEMBER(priority_w);
- DECLARE_READ16_MEMBER(lordgun_gun_0_x_r);
- DECLARE_READ16_MEMBER(lordgun_gun_0_y_r);
- DECLARE_READ16_MEMBER(lordgun_gun_1_x_r);
- DECLARE_READ16_MEMBER(lordgun_gun_1_y_r);
- DECLARE_WRITE16_MEMBER(soundlatch_w);
- template<int Layer> DECLARE_WRITE16_MEMBER(vram_w);
+ void priority_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t lordgun_gun_0_x_r();
+ uint16_t lordgun_gun_0_y_r();
+ uint16_t lordgun_gun_1_x_r();
+ uint16_t lordgun_gun_1_y_r();
+ void soundlatch_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ template<int Layer> void vram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
void fake_w(uint8_t data);
void fake2_w(uint8_t data);
void lordgun_eeprom_w(uint8_t data);