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