summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/nmc9306.h
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-04-02 21:56:11 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2022-04-02 21:56:11 +1100
commit1db06b136d14629cb8e31b87a45913526fb3ceb7 (patch)
tree99d2cd74255ac271fb56edfe52846d8342d14538 /src/devices/machine/nmc9306.h
parent7c1dac74a8a56515def7b8db29664b31557b0c2f (diff)
init vars for coverity (devices/machine/k-p)
Diffstat (limited to 'src/devices/machine/nmc9306.h')
-rw-r--r--src/devices/machine/nmc9306.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/devices/machine/nmc9306.h b/src/devices/machine/nmc9306.h
index 98566a9ab82..2c871251e71 100644
--- a/src/devices/machine/nmc9306.h
+++ b/src/devices/machine/nmc9306.h
@@ -54,16 +54,16 @@ private:
uint16_t m_register[16];
- int m_bits;
- int m_state;
- uint8_t m_command;
- uint8_t m_address;
- uint16_t m_data;
- bool m_ewen;
- int m_cs;
- int m_sk;
- int m_do;
- int m_di;
+ int m_bits = 0;
+ int m_state = 0;
+ uint8_t m_command = 0;
+ uint8_t m_address = 0;
+ uint16_t m_data = 0;
+ bool m_ewen = false;
+ int m_cs = 0;
+ int m_sk = 0;
+ int m_do = 0;
+ int m_di = 0;
};