1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-01 22:41:32 +00:00

Ensures proper Boolean startup values for IFF1 and IFF2.

This commit is contained in:
Thomas Harte 2017-11-29 20:32:55 -05:00
parent aa4eef41d8
commit 7dfbe4bb93

View File

@ -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