fixed initialization array error
This commit is contained in:
parent
9636a53624
commit
3bf210556e
|
@ -245,7 +245,7 @@ private:
|
|||
/**
|
||||
* 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)
|
||||
|
|
Loading…
Reference in New Issue