blob: a528f63e67dad29f889934dab2f28b6195192a4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# bf
A very small Brainfuck interpreter
To build, simply run make.
Running the interpreter is simple:
$ ./bf input.bf
The interpreter purposely does no error checking. If you don't specify an
input file, it will crash. If there is an error reading the input file, it
will crash.
Program size is fixed at the same size as data space, which is controlled by
`#define S`.
|