1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-23 20:29:42 +00:00

Remove stdout noise.

This commit is contained in:
Thomas Harte 2021-12-22 15:22:28 -05:00
parent 9796b308dc
commit 1916a9b99c

View File

@ -145,7 +145,6 @@ class MemoryMap {
case 0x48: { // ec_BaseAddress (A23A16)
const auto address = uint32_t(cycle.value8_high()) << 16;
printf("Mapping fast RAM to %08x", address);
set_region(address, uint32_t(address + fast_ram_.size()), fast_ram_.data(), PermitRead | PermitWrite);
fast_autoconf_visible_ = false;
} break;