summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/r10696.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/r10696.cpp')
-rw-r--r--src/devices/machine/r10696.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/r10696.cpp b/src/devices/machine/r10696.cpp
index 819d31084e9..e04484fa32e 100644
--- a/src/devices/machine/r10696.cpp
+++ b/src/devices/machine/r10696.cpp
@@ -47,7 +47,7 @@
const device_type R10696 = &device_creator<r10696_device>;
-r10696_device::r10696_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+r10696_device::r10696_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, R10696, "Rockwell 10696", tag, owner, clock, "r10696", __FILE__),
m_io_a(0), m_io_b(0), m_io_c(0),
m_iord(*this), m_iowr(*this)
@@ -86,9 +86,9 @@ void r10696_device::device_reset()
WRITE8_MEMBER( r10696_device::io_w )
{
assert(offset < 16);
- const UINT8 io_a = m_io_a;
- const UINT8 io_b = m_io_b;
- const UINT8 io_c = m_io_c;
+ const uint8_t io_a = m_io_a;
+ const uint8_t io_b = m_io_b;
+ const uint8_t io_c = m_io_c;
switch (offset)
{
case 0x0A: // Read Group A
@@ -134,8 +134,8 @@ WRITE8_MEMBER( r10696_device::io_w )
READ8_MEMBER( r10696_device::io_r )
{
assert(offset < 16);
- UINT8 io_a, io_b, io_c;
- UINT8 data = 0xf;
+ uint8_t io_a, io_b, io_c;
+ uint8_t data = 0xf;
switch (offset)
{
case 0x0A: // Read Group A