summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mouser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mouser.h')
-rw-r--r--src/mame/includes/mouser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/includes/mouser.h b/src/mame/includes/mouser.h
index 21e3407d6d6..1717684ee04 100644
--- a/src/mame/includes/mouser.h
+++ b/src/mame/includes/mouser.h
@@ -26,8 +26,7 @@ public:
required_shared_ptr<uint8_t> m_spriteram;
/* misc */
- uint8_t m_sound_byte;
- uint8_t m_nmi_enable;
+ bool m_nmi_enable;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -47,7 +46,7 @@ public:
virtual void machine_reset() override;
DECLARE_PALETTE_INIT(mouser);
uint32_t screen_update_mouser(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- INTERRUPT_GEN_MEMBER(mouser_nmi_interrupt);
+ DECLARE_WRITE_LINE_MEMBER(mouser_nmi_interrupt);
INTERRUPT_GEN_MEMBER(mouser_sound_nmi_assert);
void mouser(machine_config &config);
void decrypted_opcodes_map(address_map &map);