mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-26 19:17:52 +00:00
Put word-sizing responsibility on the caller.
This commit is contained in:
@@ -86,7 +86,10 @@ class ConcreteMachine:
|
||||
}
|
||||
Memory::Fuzz(ram_);
|
||||
|
||||
video_->set_ram(reinterpret_cast<uint16_t *>(ram_.data()), ram_.size());
|
||||
video_->set_ram(
|
||||
reinterpret_cast<uint16_t *>(ram_.data()),
|
||||
ram_.size() >> 1
|
||||
);
|
||||
|
||||
constexpr ROM::Name rom_name = ROM::Name::AtariSTTOS100;
|
||||
ROM::Request request(rom_name);
|
||||
|
||||
Reference in New Issue
Block a user