summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mhavoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mhavoc.h')
-rw-r--r--src/mame/includes/mhavoc.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/includes/mhavoc.h b/src/mame/includes/mhavoc.h
index 1758ebcd67b..711fbf746ff 100644
--- a/src/mame/includes/mhavoc.h
+++ b/src/mame/includes/mhavoc.h
@@ -27,22 +27,22 @@ public:
m_alpha(*this, "alpha"),
m_gamma(*this, "gamma"){ }
- required_shared_ptr<UINT8> m_zram0;
- required_shared_ptr<UINT8> m_zram1;
+ required_shared_ptr<uint8_t> m_zram0;
+ required_shared_ptr<uint8_t> m_zram1;
required_device<cpu_device> m_alpha;
optional_device<cpu_device> m_gamma;
- UINT8 m_alpha_data;
- UINT8 m_alpha_rcvd;
- UINT8 m_alpha_xmtd;
- UINT8 m_gamma_data;
- UINT8 m_gamma_rcvd;
- UINT8 m_gamma_xmtd;
- UINT8 m_player_1;
- UINT8 m_alpha_irq_clock;
- UINT8 m_alpha_irq_clock_enable;
- UINT8 m_gamma_irq_clock;
- UINT8 m_has_gamma_cpu;
- UINT8 m_speech_write_buffer;
+ uint8_t m_alpha_data;
+ uint8_t m_alpha_rcvd;
+ uint8_t m_alpha_xmtd;
+ uint8_t m_gamma_data;
+ uint8_t m_gamma_rcvd;
+ uint8_t m_gamma_xmtd;
+ uint8_t m_player_1;
+ uint8_t m_alpha_irq_clock;
+ uint8_t m_alpha_irq_clock_enable;
+ uint8_t m_gamma_irq_clock;
+ uint8_t m_has_gamma_cpu;
+ uint8_t m_speech_write_buffer;
DECLARE_READ8_MEMBER(dual_pokey_r);
DECLARE_WRITE8_MEMBER(dual_pokey_w);
DECLARE_WRITE8_MEMBER(mhavoc_alpha_irq_ack_w);