소스 검색

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;