https://thacks42.github.io/2024/05/04/writing-a-brainfuck-jit-for-fun-and-profit-part-3.html
| Pronouns | He/Him |
| Pronouns | He/Him |
Did you ever hear about Turing completeness, #brainfuck or spent too much time with a CS-theory major? Did you ever think about writing a #compiler but had no idea how to even start?
For whatever reason I wrote a brainfuck compiler in #assembly and c++ and finally managed to finish the first part of my blog article about it:
https://thacks42.github.io/2023/10/30/writing-a-brainfuck-jit-for-fun-and-profit.html

Need to use #fixedpoint numbers on your #embedded target because it lacks a #FPU
Don't like using clunky C libraries to chain function calls if you just want to do some basic math?
Care about #performance?
Then this might be for you:
<https://github.com/thacks42/fixed_point_math>
Supports #floatingpoint literals,
all basic arithmetic operations,
boolean expressions,
and more!
try it out on godbolt:
<https://godbolt.org/z/1qr631MKe>