summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-03-18 18:07:39 -0400
committerjakob <jakob@memeware.net>2017-03-18 18:07:39 -0400
commitd45dbeb48a9da2ccfc1dd3fc0f3baea4c365e086 (patch)
treed1107185a1b722ee65b2c8f9b5f70376dd39057a /README.md
parent9b5abf3e3859e54d4bc48db0792b2686eb7bd16a (diff)
The compilation process now includes *very* minimal code optimization.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 1 insertions, 6 deletions
diff --git a/README.md b/README.md
index 0f8dc25..ad30ca6 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,12 @@
Skullfuck
=========
-Skullfuck is a dead simple, non-optimizing compiler for Brainfuck, contained in a single C source file. It outputs binaries targeting amd64 Linux.
+Skullfuck is a dead simple, non-optimizing compiler for Brainfuck, contained in a single C source file. It outputs binaries targeting x86_64 and i686 Linux.
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
----
* *BSD targeted binaries.