summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ep64/exdos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ep64/exdos.cpp')
-rw-r--r--src/devices/bus/ep64/exdos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ep64/exdos.cpp b/src/devices/bus/ep64/exdos.cpp
index 67c6df6646c..2afb8f83312 100644
--- a/src/devices/bus/ep64/exdos.cpp
+++ b/src/devices/bus/ep64/exdos.cpp
@@ -131,7 +131,7 @@ machine_config_constructor ep64_exdos_device::device_mconfig_additions() const
// ep64_exdos_device - constructor
//-------------------------------------------------
-ep64_exdos_device::ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+ep64_exdos_device::ep64_exdos_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, EP64_EXDOS, "EXDOS", tag, owner, clock, "ep64_exdos", __FILE__),
device_ep64_expansion_bus_card_interface(mconfig, *this),
m_fdc(*this, WD1770_TAG),
@@ -193,7 +193,7 @@ READ8_MEMBER( ep64_exdos_device::read )
*/
- UINT8 data = 0;
+ uint8_t data = 0;
data |= m_fdc->intrq_r() << 1;
data |= m_fdc->drq_r() << 7;