diff --git a/src/emulator.cpp b/src/emulator.cpp index 2f957e8..3eb7161 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -47,6 +47,11 @@ void Emulator::toggleComputerPower() { } void Emulator::powerOnComputer() { + if (this->apple2.revision == 0) { + unsigned char key = 33u + rand()%94; + this->keypresses.push(key); + this->lastKeyDown = key; + } this->apple2.powerOn(); this->screenImage.drawPower(true); this->display.setNoise(false);