@@ -517,6 +517,8 @@ module.exports = class Computer {
this.stack = new Stack(this._initialMemory);
this.outputValues = [];
this.options.inputModeMap = DeepClone(this.options._initialInputModeMap);
+ this.running = false;
+ this.awaitingInput = false;
}
/**