A brainfuck compiler that outputs an assembly code.
build
$ cd src
$ gcc -o bfc bfc.c
compile (brainfuck -> assembly)
$ ./bfc hello.bf > hello.s
assemble & link (assembly -> binary)
$ gcc hello.s -o hello.bin
execute
$ ./hello.bin
Hello World!
$
This project is licensed under the GPLv3.