summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/namco06.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namco06.cpp')
-rw-r--r--src/mame/machine/namco06.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/namco06.cpp b/src/mame/machine/namco06.cpp
index ac41626fac3..40bf97858e5 100644
--- a/src/mame/machine/namco06.cpp
+++ b/src/mame/machine/namco06.cpp
@@ -102,7 +102,7 @@ TIMER_CALLBACK_MEMBER( namco_06xx_device::nmi_generate )
READ8_MEMBER( namco_06xx_device::data_r )
{
- UINT8 result = 0xff;
+ uint8_t result = 0xff;
LOG(("%s: 06XX '%s' read offset %d\n",machine().describe_context(),tag(),offset));
@@ -176,7 +176,7 @@ WRITE8_MEMBER( namco_06xx_device::ctrl_w )
const device_type NAMCO_06XX = &device_creator<namco_06xx_device>;
-namco_06xx_device::namco_06xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+namco_06xx_device::namco_06xx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, NAMCO_06XX, "Namco 06xx", tag, owner, clock, "namco06xx", __FILE__)
, m_control(0)
, m_nmicpu(*this, finder_base::DUMMY_TAG)