summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ccs2810.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ccs2810.cpp')
-rw-r--r--src/mame/drivers/ccs2810.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/ccs2810.cpp b/src/mame/drivers/ccs2810.cpp
index 339ed5f04a5..b2f15bd6219 100644
--- a/src/mame/drivers/ccs2810.cpp
+++ b/src/mame/drivers/ccs2810.cpp
@@ -131,10 +131,10 @@ protected:
void port04_w(u8 data);
void port34_w(u8 data);
- bool m_ss;
- bool m_dden;
- bool m_dsize;
- u8 m_ds;
+ bool m_ss = 0;
+ bool m_dden = 0;
+ bool m_dsize = 0;
+ u8 m_ds = 0U;
floppy_image_device *m_floppy;
required_device<z80_device> m_maincpu;
@@ -161,7 +161,7 @@ private:
void ccs2810_io(address_map &map);
void ccs2810_mem(address_map &map);
- u8 m_power_on_status;
+ u8 m_power_on_status = 0U;
};
class ccs300_state : public ccs_state