summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/psx
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
commit0825ce4f3b8eaab42e3682f7d01d97ce6ea0416d (patch)
tree24de29ca8cbba68740ec8cd26f15209f19c2bf0b /src/devices/bus/psx
parentd1d8a66ab196156ab22ba1059d714cd040b44ab6 (diff)
Cleanups and version bumpmame0168
Diffstat (limited to 'src/devices/bus/psx')
-rw-r--r--src/devices/bus/psx/analogue.cpp12
-rw-r--r--src/devices/bus/psx/ctlrport.cpp4
-rw-r--r--src/devices/bus/psx/memcard.cpp30
-rw-r--r--src/devices/bus/psx/multitap.cpp6
4 files changed, 26 insertions, 26 deletions
diff --git a/src/devices/bus/psx/analogue.cpp b/src/devices/bus/psx/analogue.cpp
index a85bd9b2fc9..a4d82de288f 100644
--- a/src/devices/bus/psx/analogue.cpp
+++ b/src/devices/bus/psx/analogue.cpp
@@ -7,12 +7,12 @@ const device_type PSX_DUALSHOCK = &device_creator<psx_dualshock_device>;
psx_analog_controller_device::psx_analog_controller_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- device_psx_controller_interface(mconfig, *this),
- m_type(),
- m_confmode(false),
- m_analogmode(false),
- m_analoglock(false),
- m_temp(0),
+ device_psx_controller_interface(mconfig, *this),
+ m_type(),
+ m_confmode(false),
+ m_analogmode(false),
+ m_analoglock(false),
+ m_temp(0),
m_cmd(0),
m_pad0(*this, "PSXPAD0"),
m_pad1(*this, "PSXPAD1"),
diff --git a/src/devices/bus/psx/ctlrport.cpp b/src/devices/bus/psx/ctlrport.cpp
index 43203718ecd..5f84e482b4d 100644
--- a/src/devices/bus/psx/ctlrport.cpp
+++ b/src/devices/bus/psx/ctlrport.cpp
@@ -10,8 +10,8 @@ const device_type PSX_CONTROLLER_PORT = &device_creator<psx_controller_port_devi
psx_controller_port_device::psx_controller_port_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, PSX_CONTROLLER_PORT, "Playstation Controller Port", tag, owner, clock, "psx_controller_port", __FILE__),
- device_slot_interface(mconfig, *this),
- m_tx(false),
+ device_slot_interface(mconfig, *this),
+ m_tx(false),
m_dev(nullptr),
m_card(*this, "card")
{
diff --git a/src/devices/bus/psx/memcard.cpp b/src/devices/bus/psx/memcard.cpp
index c478b54b664..5b8ff16933b 100644
--- a/src/devices/bus/psx/memcard.cpp
+++ b/src/devices/bus/psx/memcard.cpp
@@ -43,22 +43,22 @@ enum transfer_states
psxcard_device::psxcard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, PSXCARD, "Sony PSX Memory Card", tag, owner, clock, "psxcard", __FILE__),
- device_image_interface(mconfig, *this),
- pkt_ptr(0),
- pkt_sz(0),
- cmd(0),
- addr(0),
+ device_image_interface(mconfig, *this),
+ pkt_ptr(0),
+ pkt_sz(0),
+ cmd(0),
+ addr(0),
state(0),
- m_disabled(false),
- m_odata(0),
- m_idata(0),
- m_bit(0),
- m_count(0),
- m_pad(false),
- m_clock(false),
- m_sel(false),
- m_ack(false),
- m_rx(false),
+ m_disabled(false),
+ m_odata(0),
+ m_idata(0),
+ m_bit(0),
+ m_count(0),
+ m_pad(false),
+ m_clock(false),
+ m_sel(false),
+ m_ack(false),
+ m_rx(false),
m_ack_timer(nullptr),
m_owner(nullptr)
{
diff --git a/src/devices/bus/psx/multitap.cpp b/src/devices/bus/psx/multitap.cpp
index 74c944b6b0a..8444e02c2fe 100644
--- a/src/devices/bus/psx/multitap.cpp
+++ b/src/devices/bus/psx/multitap.cpp
@@ -8,10 +8,10 @@ const device_type PSX_MULTITAP = &device_creator<psx_multitap_device>;
psx_multitap_device::psx_multitap_device(const machine_config& mconfig, const char* tag, device_t* owner, UINT32 clock) :
device_t(mconfig, PSX_MULTITAP, "Playstation Multitap", tag, owner, clock, "psx_multitap", __FILE__),
- device_psx_controller_interface(mconfig, *this),
- m_activeport(0),
+ device_psx_controller_interface(mconfig, *this),
+ m_activeport(0),
m_singlemode(false),
- m_nextmode(false),
+ m_nextmode(false),
m_tapmc(false),
m_porta(*this, "a"),
m_portb(*this, "b"),