summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/exp.cpp')
-rw-r--r--src/devices/bus/pet/exp.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/pet/exp.cpp b/src/devices/bus/pet/exp.cpp
index 8a830a8af3a..b04b2d14f1f 100644
--- a/src/devices/bus/pet/exp.cpp
+++ b/src/devices/bus/pet/exp.cpp
@@ -34,7 +34,7 @@ const device_type PET_EXPANSION_SLOT = &device_creator<pet_expansion_slot_device
// pet_expansion_slot_device - constructor
//-------------------------------------------------
-pet_expansion_slot_device::pet_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+pet_expansion_slot_device::pet_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, PET_EXPANSION_SLOT, "PET memory expansion port", tag, owner, clock, "pet_expansion_slot", __FILE__),
device_slot_interface(mconfig, *this), m_card(nullptr),
m_read_dma(*this),
@@ -113,7 +113,7 @@ int pet_expansion_slot_device::norom_r(address_space &space, offs_t offset, int
// read - buffered data read
//-------------------------------------------------
-UINT8 pet_expansion_slot_device::read(address_space &space, offs_t offset, UINT8 data, int &sel)
+uint8_t pet_expansion_slot_device::read(address_space &space, offs_t offset, uint8_t data, int &sel)
{
if (m_card != nullptr)
{
@@ -128,7 +128,7 @@ UINT8 pet_expansion_slot_device::read(address_space &space, offs_t offset, UINT8
// write - buffered data write
//-------------------------------------------------
-void pet_expansion_slot_device::write(address_space &space, offs_t offset, UINT8 data, int &sel)
+void pet_expansion_slot_device::write(address_space &space, offs_t offset, uint8_t data, int &sel)
{
if (m_card != nullptr)
{
@@ -161,7 +161,7 @@ WRITE_LINE_MEMBER( pet_expansion_slot_device::irq_w )
// dma_bd_r - DMA read
//-------------------------------------------------
-UINT8 pet_expansion_slot_device::dma_bd_r(offs_t offset)
+uint8_t pet_expansion_slot_device::dma_bd_r(offs_t offset)
{
return m_read_dma(offset);
}
@@ -171,7 +171,7 @@ UINT8 pet_expansion_slot_device::dma_bd_r(offs_t offset)
// dma_bd_w - DMA write
//-------------------------------------------------
-void pet_expansion_slot_device::dma_bd_w(offs_t offset, UINT8 data)
+void pet_expansion_slot_device::dma_bd_w(offs_t offset, uint8_t data)
{
m_write_dma(offset, data);
}