summaryrefslogtreecommitdiffstats
path: root/src/devices/machine/tmc0430.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/tmc0430.cpp')
-rw-r--r--src/devices/machine/tmc0430.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/tmc0430.cpp b/src/devices/machine/tmc0430.cpp
index dc1d8adc27e..d2547467abe 100644
--- a/src/devices/machine/tmc0430.cpp
+++ b/src/devices/machine/tmc0430.cpp
@@ -103,7 +103,7 @@
/*
Constructor.
*/
-tmc0430_device::tmc0430_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+tmc0430_device::tmc0430_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, TMC0430, "TMC0430 device (GROM)", tag, owner, clock, "grom", __FILE__),
m_gromready(*this),
m_current_clock_level(CLEAR_LINE),
@@ -202,7 +202,7 @@ WRITE8_MEMBER( tmc0430_device::set_lines )
WRITE_LINE_MEMBER( tmc0430_device::gclock_in )
{
int bank = 0;
- UINT16 baddr = 0;
+ uint16_t baddr = 0;
// Wait for rising edge
line_state oldlevel = (line_state)m_current_clock_level;
@@ -277,7 +277,7 @@ READ8Z_MEMBER( tmc0430_device::readz )
{
// Address reading is destructive
*value = (m_address & 0xff00)>>8;
- UINT8 lsb = (m_address & 0x00ff);
+ uint8_t lsb = (m_address & 0x00ff);
m_address = (lsb << 8) | lsb; // see [1], section 2.5.3
if (TRACE_DETAIL) logerror("GROM %d return address %02x\n", m_ident>>13, *value);
}