Brainfuck compiler for linux x86_64 written in nasm x86_64
Find a file
2019-01-05 22:49:00 +01:00
tests Add a testsuite using beef bf interpreter 2019-01-05 22:44:30 +01:00
bfc.asm Deleted -e option and bf interpreter capabilities 2019-01-05 22:44:05 +01:00
Makefile Initial commit 2018-12-29 22:45:00 +01:00
README.txt Update README.txt 2019-01-05 22:49:00 +01:00
runtests.sh Add a testsuite using beef bf interpreter 2019-01-05 22:44:30 +01:00

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