Brainfuck compiler for linux x86_64 written in nasm x86_64
x86-64
nasm
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Yann Weber fcf489a567 Update README.txt 6 лет назад
tests Add a testsuite using beef bf interpreter 6 лет назад
Makefile Initial commit 6 лет назад
README.txt Update README.txt 6 лет назад
bfc.asm Deleted -e option and bf interpreter capabilities 6 лет назад
runtests.sh Add a testsuite using beef bf interpreter 6 лет назад

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