Email or username:

Password:

Forgot your password?
Top-level
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 ;)

2 comments
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