summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pet/64k.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pet/64k.cpp')
-rw-r--r--src/devices/bus/pet/64k.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/pet/64k.cpp b/src/devices/bus/pet/64k.cpp
index dfdc278a77d..7b27e8c3c13 100644
--- a/src/devices/bus/pet/64k.cpp
+++ b/src/devices/bus/pet/64k.cpp
@@ -26,9 +26,9 @@ const device_type PET_64K = &device_creator<pet_64k_expansion_device>;
// read_ram -
//-------------------------------------------------
-inline UINT8 pet_64k_expansion_device::read_ram(offs_t offset)
+inline uint8_t pet_64k_expansion_device::read_ram(offs_t offset)
{
- UINT8 data;
+ uint8_t data;
if (offset < 0xc000)
{
@@ -47,7 +47,7 @@ inline UINT8 pet_64k_expansion_device::read_ram(offs_t offset)
// write_ram -
//-------------------------------------------------
-inline void pet_64k_expansion_device::write_ram(offs_t offset, UINT8 data)
+inline void pet_64k_expansion_device::write_ram(offs_t offset, uint8_t data)
{
if (offset < 0xc000)
{
@@ -75,7 +75,7 @@ inline void pet_64k_expansion_device::write_ram(offs_t offset, UINT8 data)
// pet_64k_expansion_device - constructor
//-------------------------------------------------
-pet_64k_expansion_device::pet_64k_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+pet_64k_expansion_device::pet_64k_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, PET_64K, "PET 64KB RAM", tag, owner, clock, "pet_64k", __FILE__),
device_pet_expansion_card_interface(mconfig, *this),
m_ram(*this, "ram"),
@@ -122,7 +122,7 @@ int pet_64k_expansion_device::pet_norom_r(address_space &space, offs_t offset, i
// pet_bd_r - buffered data read
//-------------------------------------------------
-UINT8 pet_64k_expansion_device::pet_bd_r(address_space &space, offs_t offset, UINT8 data, int &sel)
+uint8_t pet_64k_expansion_device::pet_bd_r(address_space &space, offs_t offset, uint8_t data, int &sel)
{
if (BIT(m_ctrl, 7))
{
@@ -163,7 +163,7 @@ UINT8 pet_64k_expansion_device::pet_bd_r(address_space &space, offs_t offset, UI
// pet_bd_w - buffered data write
//-------------------------------------------------
-void pet_64k_expansion_device::pet_bd_w(address_space &space, offs_t offset, UINT8 data, int &sel)
+void pet_64k_expansion_device::pet_bd_w(address_space &space, offs_t offset, uint8_t data, int &sel)
{
if (BIT(m_ctrl, 7))
{