aboutsummaryrefslogtreecommitdiffstats
path: root/memdict.hpp
diff options
context:
space:
mode:
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 {