From 7dfbe4bb935917e9b5ef582cd388a6728051c914 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 29 Nov 2017 20:32:55 -0500 Subject: [PATCH] Ensures proper Boolean startup values for IFF1 and IFF2. --- Processors/Z80/Implementation/Z80Storage.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/Z80/Implementation/Z80Storage.hpp b/Processors/Z80/Implementation/Z80Storage.hpp index b45cead2e..9dd45179a 100644 --- a/Processors/Z80/Implementation/Z80Storage.hpp +++ b/Processors/Z80/Implementation/Z80Storage.hpp @@ -120,7 +120,7 @@ class ProcessorStorage { RegisterPair afDash_, bcDash_, deDash_, hlDash_; RegisterPair ix_, iy_, pc_, sp_; RegisterPair ir_, refresh_addr_; - bool iff1_, iff2_; + bool iff1_ = false, iff2_ = false; int interrupt_mode_ = 0; uint16_t pc_increment_ = 1; uint8_t sign_result_; // the sign flag is set if the value in sign_result_ is negative