summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bw2/exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bw2/exp.cpp')
-rw-r--r--src/devices/bus/bw2/exp.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/bw2/exp.cpp b/src/devices/bus/bw2/exp.cpp
index c79e85fa90a..9ece8a6f071 100644
--- a/src/devices/bus/bw2/exp.cpp
+++ b/src/devices/bus/bw2/exp.cpp
@@ -51,7 +51,7 @@ device_bw2_expansion_slot_interface::~device_bw2_expansion_slot_interface()
// bw2_expansion_slot_device - constructor
//-------------------------------------------------
-bw2_expansion_slot_device::bw2_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+bw2_expansion_slot_device::bw2_expansion_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, BW2_EXPANSION_SLOT, "Bondwell 2 expansion port", tag, owner, clock, "bw2_expansion_slot", __FILE__),
device_slot_interface(mconfig, *this), m_cart(nullptr)
{
@@ -94,7 +94,7 @@ void bw2_expansion_slot_device::device_reset()
// cd_r - cartridge data read
//-------------------------------------------------
-UINT8 bw2_expansion_slot_device::cd_r(address_space &space, offs_t offset, UINT8 data, int ram2, int ram3, int ram4, int ram5, int ram6)
+uint8_t bw2_expansion_slot_device::cd_r(address_space &space, offs_t offset, uint8_t data, int ram2, int ram3, int ram4, int ram5, int ram6)
{
if (m_cart != nullptr)
{
@@ -109,7 +109,7 @@ UINT8 bw2_expansion_slot_device::cd_r(address_space &space, offs_t offset, UINT8
// cd_w - cartridge data write
//-------------------------------------------------
-void bw2_expansion_slot_device::cd_w(address_space &space, offs_t offset, UINT8 data, int ram2, int ram3, int ram4, int ram5, int ram6)
+void bw2_expansion_slot_device::cd_w(address_space &space, offs_t offset, uint8_t data, int ram2, int ram3, int ram4, int ram5, int ram6)
{
if (m_cart != nullptr)
{
@@ -124,7 +124,7 @@ void bw2_expansion_slot_device::cd_w(address_space &space, offs_t offset, UINT8
READ8_MEMBER( bw2_expansion_slot_device::slot_r )
{
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (m_cart != nullptr)
{
@@ -154,7 +154,7 @@ WRITE8_MEMBER( bw2_expansion_slot_device::slot_w )
READ8_MEMBER( bw2_expansion_slot_device::modsel_r )
{
- UINT8 data = 0xff;
+ uint8_t data = 0xff;
if (m_cart != nullptr)
{