summaryrefslogtreecommitdiffstats
path: root/src/devices/bus/sat_ctrl/joy_md.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sat_ctrl/joy_md.cpp')
-rw-r--r--src/devices/bus/sat_ctrl/joy_md.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/sat_ctrl/joy_md.cpp b/src/devices/bus/sat_ctrl/joy_md.cpp
index d88753c591b..ae57cbb79a9 100644
--- a/src/devices/bus/sat_ctrl/joy_md.cpp
+++ b/src/devices/bus/sat_ctrl/joy_md.cpp
@@ -69,7 +69,7 @@ ioport_constructor saturn_joymd6b_device::device_input_ports() const
// constructors
//-------------------------------------------------
-saturn_joymd3b_device::saturn_joymd3b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+saturn_joymd3b_device::saturn_joymd3b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, SATURN_JOYMD3B, "Sega Saturn Joypad MD 3buttons", tag, owner, clock, "saturn_md3b", __FILE__),
device_saturn_control_port_interface(mconfig, *this),
m_joy(*this, "JOY")
@@ -78,7 +78,7 @@ saturn_joymd3b_device::saturn_joymd3b_device(const machine_config &mconfig, cons
}
-saturn_joymd6b_device::saturn_joymd6b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+saturn_joymd6b_device::saturn_joymd6b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, SATURN_JOYMD6B, "Sega Saturn Joypad MD 6buttons", tag, owner, clock, "saturn_md6b", __FILE__),
device_saturn_control_port_interface(mconfig, *this),
m_joy(*this, "JOY")
@@ -91,9 +91,9 @@ saturn_joymd6b_device::saturn_joymd6b_device(const machine_config &mconfig, cons
// read_ctrl
//-------------------------------------------------
-UINT8 saturn_joymd3b_device::read_ctrl(UINT8 offset)
+uint8_t saturn_joymd3b_device::read_ctrl(uint8_t offset)
{
- UINT8 res = 0;
+ uint8_t res = 0;
switch (offset)
{
case 0:
@@ -104,9 +104,9 @@ UINT8 saturn_joymd3b_device::read_ctrl(UINT8 offset)
return res;
}
-UINT8 saturn_joymd6b_device::read_ctrl(UINT8 offset)
+uint8_t saturn_joymd6b_device::read_ctrl(uint8_t offset)
{
- UINT8 res = 0;
+ uint8_t res = 0;
switch (offset)
{
case 0: