diff options
Diffstat (limited to 'src/devices/bus/psx/memcard.cpp')
-rw-r--r-- | src/devices/bus/psx/memcard.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
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) { |