Skip to content

gael-bigot/bfc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

bfc

Tiny brainf*ck compiler to Linux x86_64 assembly.

Build with your favorite compiler :

$ gcc -o bfc bfc.c

Compile any brainf*ck source code into Linux x86_64 assembly :

$ ./bfc < hello.bf > hello.asm

Assemble, link and enjoy!

$ nasm -f elf64 hello.asm
$ ld -m elf_x86_64 -o hello hello.o
$ ./hello
Hello, World!

About

Tiny brainf*ck compiler to Linux x86_64 assembly

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors