1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Increases the Mac Plus too 4mb.

This commit is contained in:
Thomas Harte
2019-08-11 21:41:12 -04:00
parent a90a74a512
commit 895c315fa5
5 changed files with 19 additions and 20 deletions
-4
View File
@@ -26,7 +26,3 @@ void Memory::Fuzz(uint8_t *buffer, std::size_t size) {
void Memory::Fuzz(uint16_t *buffer, std::size_t size) {
Fuzz(reinterpret_cast<uint8_t *>(buffer), size * sizeof(uint16_t));
}
void Memory::Fuzz(std::vector<uint8_t> &buffer) {
Fuzz(buffer.data(), buffer.size());
}