18 lines
265 B
Markdown
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
|
|
```
|