Yann Weber fcf489a567 Update README.txt | 6 years ago | |
---|---|---|
tests | 6 years ago | |
Makefile | 6 years ago | |
README.txt | 6 years ago | |
bfc.asm | 6 years ago | |
runtests.sh | 6 years ago |
BFC : a BrainFuck Compiler
--------------------------
Build :
-------
make
or :
nasm -felf64 bfc.asm && ld -s -melf_x86_64 bfc.o -o bfc
Usage :
-------
./bfc [-h] [-o a.out] FILE.bf
Options :
---------
-h print usage and exit
-o indicate the file to create (default is a.out)
FILE.bf the brainfuck source file to compile