summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99_peb/tn_ide.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99_peb/tn_ide.cpp')
-rw-r--r--src/devices/bus/ti99_peb/tn_ide.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ti99_peb/tn_ide.cpp b/src/devices/bus/ti99_peb/tn_ide.cpp
index e7bbbc06a3f..371802d4d99 100644
--- a/src/devices/bus/ti99_peb/tn_ide.cpp
+++ b/src/devices/bus/ti99_peb/tn_ide.cpp
@@ -49,7 +49,7 @@ enum
cru_reg_reset = 0x80
};
-nouspikel_ide_interface_device::nouspikel_ide_interface_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+nouspikel_ide_interface_device::nouspikel_ide_interface_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: ti_expansion_card_device(mconfig, TI99_IDE, "Nouspikel IDE interface card", tag, owner, clock, "ti99_ide", __FILE__), m_ata_irq(false),
m_cru_register(0), m_rtc(nullptr),
m_ata(*this, "ata"), m_clk_irq(false), m_sram_enable(false),
@@ -63,7 +63,7 @@ nouspikel_ide_interface_device::nouspikel_ide_interface_device(const machine_con
*/
READ8Z_MEMBER(nouspikel_ide_interface_device::crureadz)
{
- UINT8 reply = 0;
+ uint8_t reply = 0;
if ((offset & 0xff00)==m_cru_base)
{
int bit = (offset >> 4) & 7;
@@ -127,7 +127,7 @@ WRITE8_MEMBER(nouspikel_ide_interface_device::cruwrite)
*/
READ8Z_MEMBER(nouspikel_ide_interface_device::readz)
{
- UINT8 reply = 0;
+ uint8_t reply = 0;
if (space.debugger_access()) return;
if (((offset & m_select_mask)==m_select_value) && m_selected)