Reimplements some parts of the Python's builtins but in ASM. Currently supports:
builtins.print, which callssys_writesyscall with x86_64 ASM directly from C
Why? Because I am bored. I created this just for fun for a video in my the-best-python-course.
Please, don't use this!
>>> import asm_builtins
>>> asm_builtins.print("hello", "world")
"hello world"😱
Clone this locally, cd into this folder and then:
pip install .