summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/eepromser.h
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-04-02 20:49:26 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2022-04-02 20:49:26 +1100
commit7c1dac74a8a56515def7b8db29664b31557b0c2f (patch)
treea9d254c0816ce9ce9576fb4b81d45ecd6eb2b33b /src/devices/machine/eepromser.h
parent02faf3a3a1bc55bf97b8a7fdc4ba376110918a1c (diff)
init vars for coverity (devices/machine/5-i)
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;
};