--- nono/vm/bankram.cpp 2026/04/29 17:05:51 1.1.1.6 +++ nono/vm/bankram.cpp 2026/04/29 17:06:01 1.1.1.7 @@ -37,12 +37,11 @@ BankRAMDevice::Init() { ram.reset(new(std::nothrow) uint8[ram_size]); if ((bool)ram == false) { - errno = ENOMEM; - warn("BankRAM(%u bytes)", ram_size); + warnx("Could not allocate %u bytes at %s", ram_size, __method__); return false; } - wait = busdata::Wait(1 * mpu->GetClock_nsec()); + wait = busdata::Wait(1 * mpu->GetClock_tsec()); return true; }