Преглед на файлове

Empty outputComputer and outputValues on Reset

ApisNecros преди 1 година
родител
ревизия
f208369ff3
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  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;
     }
 
     /**