summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/intv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/intv.h')
-rw-r--r--src/mame/includes/intv.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/includes/intv.h b/src/mame/includes/intv.h
index 4155499db7d..0b5b9ffdbcd 100644
--- a/src/mame/includes/intv.h
+++ b/src/mame/includes/intv.h
@@ -55,8 +55,8 @@ public:
required_device<ay8914_device> m_sound;
required_device<stic_device> m_stic;
optional_device<intv_cart_slot_device> m_cart;
- optional_shared_ptr<UINT16> m_intvkbd_dualport_ram;
- optional_shared_ptr<UINT8> m_videoram;
+ optional_shared_ptr<uint16_t> m_intvkbd_dualport_ram;
+ optional_shared_ptr<uint8_t> m_videoram;
DECLARE_READ16_MEMBER(intv_stic_r);
DECLARE_WRITE16_MEMBER(intv_stic_w);
@@ -71,11 +71,11 @@ public:
DECLARE_READ8_MEMBER(intv_right_control_r);
DECLARE_READ8_MEMBER(intv_left_control_r);
- UINT8 m_bus_copy_mode;
- UINT8 m_backtab_row;
- UINT16 m_ram16[0x160];
+ uint8_t m_bus_copy_mode;
+ uint8_t m_backtab_row;
+ uint16_t m_ram16[0x160];
int m_sr1_int_pending;
- UINT8 m_ram8[256];
+ uint8_t m_ram8[256];
// Keyboard Component
DECLARE_READ8_MEMBER(intvkbd_tms9927_r);
@@ -86,10 +86,10 @@ public:
DECLARE_READ8_MEMBER(intvkbd_dualport8_msb_r);
DECLARE_WRITE8_MEMBER(intvkbd_dualport8_msb_w);
- UINT8 m_tms9927_num_rows;
- UINT8 m_tms9927_cursor_col;
- UINT8 m_tms9927_cursor_row;
- UINT8 m_tms9927_last_row;
+ uint8_t m_tms9927_num_rows;
+ uint8_t m_tms9927_cursor_col;
+ uint8_t m_tms9927_cursor_row;
+ uint8_t m_tms9927_last_row;
int m_intvkbd_text_blanked;
int m_intvkbd_keyboard_col;
@@ -104,8 +104,8 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(intv);
- UINT32 screen_update_intv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_intvkbd(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_intv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_intvkbd(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(intv_interrupt2);
INTERRUPT_GEN_MEMBER(intv_interrupt);
TIMER_CALLBACK_MEMBER(intv_interrupt2_complete);