Kaynağa Gözat

Add parameter mode enums to computer

ApisNecros 1 yıl önce
ebeveyn
işleme
432cb193bd
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  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;
     }
 
     /**