aboutsummaryrefslogtreecommitdiffstats
path: root/memdict.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
commit970bbb473c81975d3c7366260c8228fd4fcc8c4d (patch)
tree518c5e7290ffe66e84ba1c8e7df0c42f849d0857 /memdict.hpp
parentdcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff)
linting; reduce msp430 binary size
Diffstat (limited to 'memdict.hpp')
-rw-r--r--memdict.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/memdict.hpp b/memdict.hpp
index 398af0f..22841c5 100644
--- a/memdict.hpp
+++ b/memdict.hpp
@@ -28,7 +28,7 @@ constexpr unsigned long int MemDictSize = MEMDICTSIZE;
class MemDict : public Dictionary
{
- uint8_t dict[MemDictSize];
+ uint8_t dict[MemDictSize] = {0};
public:
virtual Cell read(Addr addr) const noexcept final {