mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-21 21:33:54 +00:00
Add missing header; correct type.
This commit is contained in:
parent
ce440d52b3
commit
78ce439b9b
@ -400,7 +400,7 @@ class ConcreteMachine:
|
||||
// secondary slot communication.
|
||||
final_slot_ = &memory_slots_[primary >> 6];
|
||||
|
||||
for(std::size_t c = 0; c < 8; c += 2) {
|
||||
for(int c = 0; c < 8; c += 2) {
|
||||
const MemorySlot &slot = memory_slots_[primary & 3];
|
||||
primary >>= 2;
|
||||
|
||||
|
@ -8,6 +8,8 @@
|
||||
|
||||
#include "MemorySlotHandler.hpp"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
using namespace MSX;
|
||||
|
||||
MemorySlot::MemorySlot() {
|
||||
|
Loading…
Reference in New Issue
Block a user