Преглед изворни кода

Set isOutput to true for OUTPUT opcode

ApisNecros пре 1 година
родитељ
комит
0f253c3f55
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      IntComp/Computer.js

+ 1 - 1
IntComp/Computer.js

@@ -308,7 +308,7 @@ module.exports = class Computer {
     Operation_Input(rawOpcode) {
         // Disallow Position Parameter Mode
         const outputParamMode = ComputerParameterMode.ParseParameterMode(rawOpcode, 1) || 1;
-        const outputPosition = this.stack.Next().Get(outputParamMode);
+        const outputPosition = this.stack.Next().Get(outputParamMode, true);
 
         /** A variable to store the input in before putting it on the stack */
         let userInput;