summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/de_3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/de_3.cpp')
-rw-r--r--src/mame/drivers/de_3.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/de_3.cpp b/src/mame/drivers/de_3.cpp
index cb4fdd07b85..8d180770039 100644
--- a/src/mame/drivers/de_3.cpp
+++ b/src/mame/drivers/de_3.cpp
@@ -82,13 +82,13 @@ protected:
// driver_device overrides
virtual void machine_reset() override;
private:
-// UINT32 m_segment1;
-// UINT32 m_segment2;
- UINT8 m_strobe;
- UINT8 m_kbdrow;
- UINT8 m_diag;
+// uint32_t m_segment1;
+// uint32_t m_segment2;
+ uint8_t m_strobe;
+ uint8_t m_kbdrow;
+ uint8_t m_diag;
bool m_ca1;
- UINT8 m_sound_data;
+ uint8_t m_sound_data;
public:
DECLARE_DRIVER_INIT(de_3);
@@ -195,7 +195,7 @@ WRITE8_MEMBER( de_3_state::lamp0_w )
// 6821 PIA at 0x2800
WRITE8_MEMBER( de_3_state::dig0_w )
{
-// static const UINT8 patterns[16] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7c, 0x07, 0x7f, 0x67, 0x58, 0x4c, 0x62, 0x69, 0x78, 0 }; // 7447
+// static const uint8_t patterns[16] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7c, 0x07, 0x7f, 0x67, 0x58, 0x4c, 0x62, 0x69, 0x78, 0 }; // 7447
// data &= 0x7f;
// m_strobe = data & 15;
// m_diag = (data & 0x70) >> 4;
@@ -220,7 +220,7 @@ WRITE8_MEMBER( de_3_state::dig1_w )
READ8_MEMBER( de_3_state::pia28_w7_r )
{
- UINT8 ret = 0x80;
+ uint8_t ret = 0x80;
ret |= m_strobe;
ret |= m_diag << 4;
@@ -332,7 +332,7 @@ READ8_MEMBER( de_3_state::dmd_status_r )
READ8_MEMBER(de_3_state::display_r)
{
- UINT8 ret = 0x00;
+ uint8_t ret = 0x00;
switch(offset)
{