summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namco53.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namco53.cpp')
-rw-r--r--src/mame/machine/namco53.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/namco53.cpp b/src/mame/machine/namco53.cpp
index e94b9a867ec..4b1b29173db 100644
--- a/src/mame/machine/namco53.cpp
+++ b/src/mame/machine/namco53.cpp
@@ -80,7 +80,7 @@ READ8_MEMBER( namco_53xx_device::Rx_r )
WRITE8_MEMBER( namco_53xx_device::O_w )
{
- UINT8 out = (data & 0x0f);
+ uint8_t out = (data & 0x0f);
if (data & 0x10)
m_portO = (m_portO & 0x0f) | (out << 4);
else
@@ -112,7 +112,7 @@ WRITE_LINE_MEMBER(namco_53xx_device::read_request)
READ8_MEMBER( namco_53xx_device::read )
{
- UINT8 res = m_portO;
+ uint8_t res = m_portO;
read_request(0);
@@ -145,7 +145,7 @@ ROM_END
const device_type NAMCO_53XX = &device_creator<namco_53xx_device>;
-namco_53xx_device::namco_53xx_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+namco_53xx_device::namco_53xx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, NAMCO_53XX, "Namco 53xx", tag, owner, clock, "namco53", __FILE__),
m_cpu(*this, "mcu"),
m_portO(0),