Procházet zdrojové kódy

Empty outputComputer and outputValues on Reset

ApisNecros před 1 rokem
rodič
revize
f208369ff3
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 2 0
      IntComp/Computer.js

+ 2 - 0
IntComp/Computer.js

@@ -392,6 +392,8 @@ module.exports = class Computer {
      */
     Reset() {
         this.stack = new Stack(this._initialMemory);
+        this.outputValues = null;
+        this.outputComputer = null;
     }
 
     /**