Mohanson

Results 60 comments of Mohanson

# LEB128 I rewrote it, much faster than before, shame. LEB128 Spec: [https://en.wikipedia.org/wiki/LEB128](https://en.wikipedia.org/wiki/LEB128) My repo: [https://github.com/mohanson/leb128](https://github.com/mohanson/leb128)

At present, there are many trap about the calculation of floating point numbers. This feels bad, I have to help python implement IEEE 754.

pywasm1.0 released. https://github.com/mohanson/pywasm/pull/32

Well, let me think about it, because doing so will break compatibility.

For the time being **libc** is not supported on pywasm("calloc", "memcpy"...). This is related to the positioning of pywasm, which is an interpreter, not a complete operating system. When it...

But at the same time pywasm provides a way for you to implement libc's functions yourself, The above code can be run with: ```py import pywasm def calloc(ctx: pywasm.Ctx, n:...

Well, in fact it (WASI) is in my TODO list. It has been delayed for too long See #25 So at the moment, you may not run this test on...

Thank you for your discovery. I have noticed the execution efficiency of pywasm. It spends a lot of time on https://github.com/mohanson/pywasm/blob/master/pywasm/execution.py#L18, because every time it access any value, it always...

I recently started learning chess (because of The Queen's Gambit Maybe I will participate :)

> Ah, looking through the pywasm code it seems that the asserts have side effects, that are necessary for it to be executed correctly. It is not a good habit...