fixed initialization array error

This commit is contained in:
Màrius Montón 2021-01-15 10:27:14 +01:00
parent 9636a53624
commit 3bf210556e
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ private:
/** /**
* bank of registers (32 regs of 32bits each) * bank of registers (32 regs of 32bits each)
*/ */
std::array<int,32> register_bank{0}; std::array<int,32> register_bank = {0};
/** /**
* Program counter (32 bits width) * Program counter (32 bits width)