Brainfuck compiler for linux x86_64 written in nasm x86_64
Find a file
Yann Weber a9ac2eeff9 Enhancement of elf generation
Now addresses are absolutre from the elf code start => JIT do not
work anymore
2019-01-05 22:32:12 +01:00
bfc.asm Enhancement of elf generation 2019-01-05 22:32:12 +01:00
Makefile Initial commit 2018-12-29 22:45:00 +01:00
README.txt Initial commit 2018-12-29 22:45:00 +01:00

BFC : a BrainFuck Compiler & interpreter
----------------------------------------

Build :
-------
	make
or :
	nasm -felf64 bfc.asm && ld -s -melf_x86_64 bfc.o -o bfc

Usage :
-------
	./bfc [-h] [-e [-o a.out]] FILE.bf

Options :
---------
 	-h print usage and exit
	-e tell bfc to produce a elf file
	-o with -e indicate the file to create
	FILE.bf the brainfuck source file to compile