Pārlūkot izejas kodu

Add parameter mode enums to computer

ApisNecros 1 gadu atpakaļ
vecāks
revīzija
432cb193bd
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 5 0
      IntComp/Computer.js

+ 5 - 0
IntComp/Computer.js

@@ -13,6 +13,11 @@ module.exports = class Computer {
             MULTIPLY: 2,
             HALT: 99,
         };
+        this.PARAMETER_MODES = {
+            POSITION_MODE: 0,
+            IMMEDIATE_MODE: 1,
+        }
+        this.paramMode = this.PARAMETER_MODES.POSITION_MODE;
     }
 
     /**