Email or username:

Password:

Forgot your password?
alex

we have controller on uxn5

probably have written more js in the last few days than I ever have in my life prior lol

git.sr.ht/~rabbits/uxn5

4 comments
Devil Lu Linvega

@aw very nice! I'm hoping we can hook in @remko's wasm core and see what sort of speedup we get :)
github.com/remko/uxn.wasm/blob

Remko Tronçon

@neauoire @aw I still have at least one bug somewhere, and I made a false assumption about the stack (that breaks circular stacks) so I need to rework stack handling, but for now, Mandelbrot is roughly 20x faster. Let's hope my rework doesn't bring that down too much ;)

Devil Lu Linvega

@remko @aw Oh wow, that's amazing!! It'll be really nice to be able to embed uxn sketches into my wiki.

I was wondering, .wat files, do I need to do anything to them to run them in the browser? Like, how do you embed this in a website?

Remko Tronçon

@neauoire @aw
.WAT is the text representation, which needs to be converted to the binary form WASM first (a boring but straightforward transformation; I typically use wat2wasm from WABT for this, but someone with time could write this in Uxntal ;) )

Go Up