summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/30test.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/30test.cpp
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/mame/drivers/30test.cpp')
-rw-r--r--src/mame/drivers/30test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/30test.cpp b/src/mame/drivers/30test.cpp
index d9291a08dd3..bb82cbba362 100644
--- a/src/mame/drivers/30test.cpp
+++ b/src/mame/drivers/30test.cpp
@@ -58,8 +58,8 @@ public:
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki") { }
- UINT8 m_mux_data;
- UINT8 m_oki_bank;
+ uint8_t m_mux_data;
+ uint8_t m_oki_bank;
DECLARE_WRITE8_MEMBER(namco_30test_led_w);
DECLARE_WRITE8_MEMBER(namco_30test_led_rank_w);
DECLARE_WRITE8_MEMBER(namco_30test_lamps_w);
@@ -75,7 +75,7 @@ public:
};
-static const UINT8 led_map[16] =
+static const uint8_t led_map[16] =
{ 0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7c,0x07,0x7f,0x67,0x77,0x7c,0x39,0x5e,0x79,0x00 };
WRITE8_MEMBER(namco_30test_state::namco_30test_led_w)
@@ -99,7 +99,7 @@ WRITE8_MEMBER(namco_30test_state::namco_30test_lamps_w)
READ8_MEMBER(namco_30test_state::namco_30test_mux_r)
{
- UINT8 res = 0xff;
+ uint8_t res = 0xff;
switch(m_mux_data)
{