Files
jitfuck/README.md
2026-03-12 18:49:29 +00:00

18 lines
265 B
Markdown

# Jitfuck
A (very limited) JIT compiler for
[brainfuck](https://en.wikipedia.org/wiki/Brainfuck), written in
x86_64 assembly.
To build (with [fasm](https://flatassembler.net/)):
```
fasm jitfuck.asm
```
It reads code from `stdin`:
```
./jitfuck < hello.bf
```