summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/eepromser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/eepromser.h')
-rw-r--r--src/devices/machine/eepromser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/eepromser.h b/src/devices/machine/eepromser.h
index d3d33db19d6..ac61f8f4aa9 100644
--- a/src/devices/machine/eepromser.h
+++ b/src/devices/machine/eepromser.h
@@ -198,10 +198,10 @@ protected:
void copy_ram_to_eeprom();
void copy_eeprom_to_ram();
void device_start() override;
- uint8_t m_ram_length;
- uint16_t m_ram_data[16];
- uint16_t m_reading;
- uint8_t m_store_latch;
+ uint8_t m_ram_length = 0;
+ uint16_t m_ram_data[16]{};
+ uint16_t m_reading = 0;
+ uint8_t m_store_latch = 0;
};