mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-16 18:30:32 +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.
|
// secondary slot communication.
|
||||||
final_slot_ = &memory_slots_[primary >> 6];
|
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];
|
const MemorySlot &slot = memory_slots_[primary & 3];
|
||||||
primary >>= 2;
|
primary >>= 2;
|
||||||
|
|
||||||
|
@ -8,6 +8,8 @@
|
|||||||
|
|
||||||
#include "MemorySlotHandler.hpp"
|
#include "MemorySlotHandler.hpp"
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
using namespace MSX;
|
using namespace MSX;
|
||||||
|
|
||||||
MemorySlot::MemorySlot() {
|
MemorySlot::MemorySlot() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user