1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +00:00

Consolidate on std::array.

This commit is contained in:
Thomas Harte 2024-01-16 14:28:15 -05:00
parent a047c6493a
commit 9ea71c97db

View File

@ -758,11 +758,11 @@ template<Model model> class ConcreteMachine:
std::array<uint8_t, 128*1024> ram_;
std::array<uint8_t, 16*1024> scratch_;
const uint8_t *read_pointers_[4];
uint8_t *write_pointers_[4];
uint8_t pages_[4];
bool is_contended_[4];
bool is_video_[4];
std::array<const uint8_t *, 4> read_pointers_;
std::array<uint8_t *, 4> write_pointers_;
std::array<uint8_t, 4> pages_;
std::array<bool, 4> is_contended_;
std::array<bool, 4> is_video_;
uint8_t port1ffd_ = 0;
uint8_t port7ffd_ = 0;