From b4cf7fac244120c002073d29cb005169e988c171 Mon Sep 17 00:00:00 2001 From: Veit Heller Date: Fri, 1 Aug 2014 18:03:17 +0200 Subject: [PATCH] Updated documentation --- nbfi/README.md | 4 ++++ vvm/README.md | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 nbfi/README.md diff --git a/nbfi/README.md b/nbfi/README.md new file mode 100644 index 0000000..fd04bac --- /dev/null +++ b/nbfi/README.md @@ -0,0 +1,4 @@ +Naive Brainf\*ck Interpreter +--------------------------- + +A virtual machine that executes brainf\*ck code. diff --git a/vvm/README.md b/vvm/README.md index b85dd78..2f4b143 100644 --- a/vvm/README.md +++ b/vvm/README.md @@ -10,6 +10,8 @@ Instruction set Up until now, all the operations are executed on integers(hence the I\* prefix). +*Operations overview*: + IADD - Adds the two items to each other that are on top of the stack and stores the result on top of the stack. ISUB - Subtracts the two items from each other that are on top of the