Brainfuck compiler for linux x86_64 written in nasm x86_64
x86-64
nasm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yann Weber fcf489a567 Update README.txt 5 years ago
tests Add a testsuite using beef bf interpreter 5 years ago
Makefile Initial commit 5 years ago
README.txt Update README.txt 5 years ago
bfc.asm Deleted -e option and bf interpreter capabilities 5 years ago
runtests.sh Add a testsuite using beef bf interpreter 5 years ago

README.txt

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