summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dm7000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dm7000.h')
-rw-r--r--src/mame/includes/dm7000.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/dm7000.h b/src/mame/includes/dm7000.h
index 4306f4619e4..97af2a1785a 100644
--- a/src/mame/includes/dm7000.h
+++ b/src/mame/includes/dm7000.h
@@ -30,9 +30,9 @@ public:
DECLARE_WRITE8_MEMBER ( dm7000_scc0_w );
DECLARE_READ8_MEMBER ( dm7000_scc0_r );
DECLARE_WRITE8_MEMBER(kbd_put);
- UINT8 m_scc0_lcr;
- UINT8 m_scc0_lsr;
- UINT8 m_term_data;
+ uint8_t m_scc0_lcr;
+ uint8_t m_scc0_lsr;
+ uint8_t m_term_data;
DECLARE_WRITE8_MEMBER ( dm7000_gpio0_w );
@@ -48,12 +48,12 @@ public:
DECLARE_WRITE32_MEMBER( dcr_w );
- UINT16 m_enet_regs[32];
+ uint16_t m_enet_regs[32];
- UINT32 dcr[1024];
+ uint32_t dcr[1024];
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_dm7000(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dm7000(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
};
/* */