summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-03-16 20:02:38 -0400
committerjakob <jakob@memeware.net>2017-03-16 20:02:38 -0400
commit3afec4b3b76bf994b581b28c3a9aeba6bcef0bf7 (patch)
tree50719717e96c006d959df1b1e90b3095a73c4b0c /README.md
parent27574819b5886dd44231a25e4add9471fa9efcb0 (diff)
Implemented support for i686 compilation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index c09b1c6..0f8dc25 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,13 @@ It depends on GNU Binutils, or any compatible implementation of `as` and `ld`.
A good explanation of the history and design behind the language can be found in [the Wikipedia article.](https://en.wikipedia.org/wiki/Brainfuck)
+Undefined Behavior
+------------------
+The Brainfuck programming language is extremely limited in its specification, and some operations don't have a defined behavior - specifically, operations on an out-of-bounds data pointer are undefined. UB is allowed, but do not expect it to work equally on all platforms.
+
+
TODO
----
-* Target 32-bit x86 and *BSD.
+* *BSD targeted binaries.
* Automate test compilation/running.
+* Static analysis to warn when undefined behavior has been detected.