diff options
Diffstat (limited to 'src/devices/machine/e05a03.cpp')
-rw-r--r-- | src/devices/machine/e05a03.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/e05a03.cpp b/src/devices/machine/e05a03.cpp index b0389abb6df..4f031f3da28 100644 --- a/src/devices/machine/e05a03.cpp +++ b/src/devices/machine/e05a03.cpp @@ -16,7 +16,7 @@ const device_type E05A03 = &device_creator<e05a03_device>; -e05a03_device::e05a03_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) +e05a03_device::e05a03_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, E05A03, "E05A03", tag, owner, clock, "e05a03", __FILE__), m_write_nlq_lp(*this), m_write_pe_lp(*this), @@ -129,7 +129,7 @@ WRITE8_MEMBER( e05a03_device::write ) READ8_MEMBER( e05a03_device::read ) { - UINT8 result = 0; + uint8_t result = 0; logerror("%s: e05a03_r(%02x)\n", space.machine().describe_context(), offset); |