Toy compiler from brainfuck to QBE IL
  • Hare 96.8%
  • Makefile 3.2%
Find a file
2026-02-20 15:06:53 -05:00
cmd/qbf say that unknown flag is ignored 2026-02-20 15:06:53 -05:00
.editorconfig don't specify whitespace trimming in editorconfig 2025-09-30 09:03:51 -04:00
.gitignore fixup makefile 2025-09-25 11:02:28 -04:00
LICENSE.md sublicense 2025-06-23 18:12:03 -04:00
Makefile libqbf is no more 2026-02-20 14:22:24 -05:00
README.md fix cc command in README 2026-02-20 13:01:49 -05:00

qbf

qbf translates brainfuck to QBE intermediate language.

To compile an a.b program to an a binary on Linux, try these steps:

cat a.b | qbf > a.ssa && \
qbe -o a.s a.ssa && \
cc -o a a.s