From 5820a7728efb3c430e74453de36cb7f7054563b5 Mon Sep 17 00:00:00 2001 From: Nicholas <34197135+nicholascc@users.noreply.github.com> Date: Fri, 25 Dec 2020 12:57:20 -0600 Subject: [PATCH] Added list of current supported instructions to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f5d870d..acc0ace 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ A just-in-time [brainf***](https://en.wikipedia.org/wiki/Brainfuck) compiler for The executable takes an input file path as a command line argument, and executes that file, providing some extra diagnostic information (a hex dump of the first 256 memory cells). +Currently this JIT compiler only supports the +, -, <, >, and . instructions. The loop and input instructions will be added soon! + ### Details The tape is 30000 cells long, and each cell is a single byte. The tape is not bounds-checked, so the head can overflow the tape and write to unknown memory without causing an error.