From c9346515b2076d2e221cdbea2b8008f80536ca07 Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Sat, 22 Jan 2022 22:49:19 +0530 Subject: [PATCH] Fix incorrect details in deadfish --- engines/deadfish/README.md | 23 +++++------------------ engines/deadfish/tests/index.test.ts | 19 +------------------ 2 files changed, 6 insertions(+), 36 deletions(-) diff --git a/engines/deadfish/README.md b/engines/deadfish/README.md index 6dfd37a..27b68ec 100644 --- a/engines/deadfish/README.md +++ b/engines/deadfish/README.md @@ -1,21 +1,8 @@ -# Brainfuck +# Deadfish ## Allowed symbols -- `>`: Move the pointer to the right -- `<`: Move the pointer to the left -- `+`: Increment the memory cell at the pointer -- `-`: Decrement the memory cell at the pointer -- `.`: Output the character signified by the cell at the pointer -- `,`: Input a character and store it in the cell at the pointer -- `[`: Jump past the matching `]` if the cell at the pointer is 0 -- `]`: Jump back to the matching `[` if the cell at the pointer is nonzero - -## Memory specifications - -> These parameters will be configurable when engine configuration is added to the project - -- For Turing-completeness, the number of cells is kept unbounded. -- Cell size is 8 bits, and allows values in the range `[-128, 127]`. -- Value `10` is designated for newlines. -- The value `0` is returned on reaching `EOF`. +- `i`: Increment value by 1 +- `d`: Decrement value by 1 +- `s`: Square the value +- `o`: Output the value diff --git a/engines/deadfish/tests/index.test.ts b/engines/deadfish/tests/index.test.ts index 5565baf..763635c 100644 --- a/engines/deadfish/tests/index.test.ts +++ b/engines/deadfish/tests/index.test.ts @@ -1,27 +1,10 @@ import { readTestProgram, executeProgram } from "../../test-utils"; -// import { BFRS, serializeTapeMap } from "../constants"; import Engine from "../runtime"; /** - * All test programs are picked up from https://esolangs.org/wiki/Brainfuck. - * - Cell cleanup code at end of cell size program is not included. + * All test programs are picked up from https://esolangs.org/wiki/Deadfish. */ -/** - * Check if actual cell array matches expected cell array. - * Expected cell array must exclude trailing zeros. - * @param cellsMap Map of cell index to value, as provided in execution result. - * @param expected Array of expected cell values, without trailing zeros. - */ -// const expectCellsToBe = (cellsMap: BFRS["tape"], expected: number[]) => { -// const cells = serializeTapeMap(cellsMap); -// expect(cells.length).toBeGreaterThanOrEqual(expected.length); -// cells.forEach((value, idx) => { -// if (idx < expected.length) expect(value).toBe(expected[idx]); -// else expect(value).toBe(0); -// }); -// }; - describe("Test programs", () => { // Standard hello-world program test("hello world", async () => {