summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/am53cf96.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/am53cf96.cpp')
-rw-r--r--src/devices/machine/am53cf96.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/am53cf96.cpp b/src/devices/machine/am53cf96.cpp
index 595a38f985b..60bfe25ddb0 100644
--- a/src/devices/machine/am53cf96.cpp
+++ b/src/devices/machine/am53cf96.cpp
@@ -146,7 +146,7 @@ WRITE8_MEMBER( am53cf96_device::write )
}
}
-am53cf96_device::am53cf96_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+am53cf96_device::am53cf96_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
legacy_scsi_host_adapter(mconfig, AM53CF96, "53CF96 SCSI", tag, owner, clock, "am53cf96", __FILE__),
m_irq_handler(*this)
{
@@ -174,7 +174,7 @@ void am53cf96_device::device_start()
}
// retrieve data from the SCSI controller
-void am53cf96_device::dma_read_data(int bytes, UINT8 *pData)
+void am53cf96_device::dma_read_data(int bytes, uint8_t *pData)
{
scsi_regs[REG_STATUS] |= 0x10; // indicate DMA finished
@@ -182,7 +182,7 @@ void am53cf96_device::dma_read_data(int bytes, UINT8 *pData)
}
// write data to the SCSI controller
-void am53cf96_device::dma_write_data(int bytes, UINT8 *pData)
+void am53cf96_device::dma_write_data(int bytes, uint8_t *pData)
{
// int i;