diff interps/egobf/README @ 996:859f9b4339e6

<Gregor> tar xf egobot.tar.xz
author HackBot
date Sun, 09 Dec 2012 19:30:08 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/interps/egobf/README	Sun Dec 09 19:30:08 2012 +0000
@@ -0,0 +1,45 @@
+== egobfi ==
+ A powerful and fast-ish Brainfuck interpreter.
+
+Use: egobfi{width} [options] [file]
+Options:
+ -eof {0|-|n}
+   set EOF mode: 0, -1 or no-change (respectively)
+   [default: 0]
+ -debug
+   activate the # command [default off]
+ -unicode {on|off}
+   set unicode mode on or off [default off]
+ -wrap {on|off}
+   set wrappong on or off [default on]
+
+
+== egobfc ==
+ An almost-as-powerful Brainfuck compiler-to-C.
+
+Use: egobfc [options] [file]
+Options:
+ -eof {0|-|n}
+   set EOF mode: 0, -1 or no-change (respectively)
+   [default: 0]
+ -debug
+   activate the # command [default off]
+ -unicode {on|off}
+   set unicode mode on or off [default off]
+ -width {8|16|32}
+   set the bitwidth [default 8]
+
+== egobfc2m ==
+ A true compiler, compiles BF to memory, like bytecode. It is very fast, but:
+A) It only works on x86 (so far, see PORTING),
+B) It's somewhat unstable,
+C) No unicode, only 8-bit, only wrapping.  Supports EOF and debug.
+
+Use: egobfc2m [options] [file]
+Options:
+ -eof {0|-|n}
+   set EOF mode: 0, -1 or no-change (respectively)
+   [default: 0]
+ -debug
+   activate the # command [default off]
+