Brainfuck compiler for linux x86_64 written in nasm x86_64
x86-64
nasm
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

README.txt 388B

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