From f0408b4024e778c55c508c140a71ae8367fab598 Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Fri, 18 Feb 2022 20:51:36 +0530 Subject: [PATCH] Match Deadfish engine to original implementation --- languages/deadfish/runtime.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/languages/deadfish/runtime.ts b/languages/deadfish/runtime.ts index 922325f..0d7e547 100644 --- a/languages/deadfish/runtime.ts +++ b/languages/deadfish/runtime.ts @@ -76,12 +76,11 @@ export default class DeadfishLanguageEngine implements LanguageEngine { * @returns String to append to output, if any */ private processOp(instr: DF_OP): string | undefined { + if (this._value === -1 || this._value === 256) this._value = 0; if (instr === DF_OP.INCR) ++this._value; else if (instr === DF_OP.DECR) --this._value; else if (instr === DF_OP.SQ) this._value = this._value * this._value; else if (instr === DF_OP.OUT) return this._value.toString(); else throw new Error("Invalid instruction"); - - if (this._value === -1 || this._value === 256) this._value = 0; } }