summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jpmimpct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jpmimpct.cpp')
-rw-r--r--src/mame/drivers/jpmimpct.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/jpmimpct.cpp b/src/mame/drivers/jpmimpct.cpp
index 54394084b62..f57727acceb 100644
--- a/src/mame/drivers/jpmimpct.cpp
+++ b/src/mame/drivers/jpmimpct.cpp
@@ -208,7 +208,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(jpmimpct_state::duart_1_timer_event)
READ16_MEMBER(jpmimpct_state::duart_1_r)
{
struct duart_t &duart_1 = m_duart_1;
- UINT16 val = 0xffff;
+ uint16_t val = 0xffff;
switch (offset)
{
case 0x1:
@@ -382,7 +382,7 @@ READ16_MEMBER(jpmimpct_state::duart_2_r)
}
case 0xb:
{
- UINT16 val = m_touch_data[m_touch_cnt];
+ uint16_t val = m_touch_data[m_touch_cnt];
if (m_touch_cnt++ == 3)
m_touch_cnt = 0;
@@ -426,7 +426,7 @@ WRITE16_MEMBER(jpmimpct_state::duart_2_w)
READ16_MEMBER(jpmimpct_state::inputs1_r)
{
- UINT16 val = 0x00ff;
+ uint16_t val = 0x00ff;
switch (offset)
{
@@ -1000,7 +1000,7 @@ MACHINE_RESET_MEMBER(jpmimpct_state,impctawp)
*/
READ16_MEMBER(jpmimpct_state::inputs1awp_r)
{
- UINT16 val = 0x00;
+ uint16_t val = 0x00;
{
switch (offset)