summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/bn1541.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/bn1541.cpp')
-rw-r--r--src/devices/bus/c64/bn1541.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/bn1541.cpp b/src/devices/bus/c64/bn1541.cpp
index fb24b459d1b..7b88d78f4f1 100644
--- a/src/devices/bus/c64/bn1541.cpp
+++ b/src/devices/bus/c64/bn1541.cpp
@@ -60,7 +60,7 @@ device_c64_floppy_parallel_interface::~device_c64_floppy_parallel_interface()
// c64_bn1541_device - constructor
//-------------------------------------------------
-c64_bn1541_device::c64_bn1541_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+c64_bn1541_device::c64_bn1541_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, C64_BN1541, "C64 Burst Nibbler 1541/1571 Parallel Cable", tag, owner, clock, "c64_bn1541", __FILE__),
device_pet_user_port_interface(mconfig, *this),
device_c64_floppy_parallel_interface(mconfig, *this), m_parallel_output(0)
@@ -95,7 +95,7 @@ void c64_bn1541_device::device_start()
// parallel_data_w -
//-------------------------------------------------
-void c64_bn1541_device::parallel_data_w(UINT8 data)
+void c64_bn1541_device::parallel_data_w(uint8_t data)
{
if (LOG) logerror("1541 parallel data %02x\n", data);