summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/userport/userport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/userport/userport.cpp')
-rw-r--r--src/devices/bus/bbc/userport/userport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/bbc/userport/userport.cpp b/src/devices/bus/bbc/userport/userport.cpp
index e044e0177d4..5a08fc836ed 100644
--- a/src/devices/bus/bbc/userport/userport.cpp
+++ b/src/devices/bus/bbc/userport/userport.cpp
@@ -50,7 +50,7 @@ device_bbc_userport_interface::~device_bbc_userport_interface()
// bbc_userport_slot_device - constructor
//-------------------------------------------------
-bbc_userport_device::bbc_userport_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+bbc_userport_device::bbc_userport_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, BBC_USERPORT_SLOT, "BBC Micro User port", tag, owner, clock, "bbc_userport_slot", __FILE__),
device_slot_interface(mconfig, *this), m_device(nullptr)
{
@@ -76,9 +76,9 @@ void bbc_userport_device::device_start()
}
-UINT8 bbc_userport_device::read_portb()
+uint8_t bbc_userport_device::read_portb()
{
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (m_device)
data |= m_device->read_portb();
return data;