@neauoire Yeah, that's where the stacks are. The docs said that the working memory was 64kb, so that's all I allocated, and the stacks immediately follow. Can be adjusted of course.
Top-level
@neauoire Yeah, that's where the stacks are. The docs said that the working memory was 64kb, so that's all I allocated, and the stacks immediately follow. Can be adjusted of course. 5 comments
@neauoire WebAssembly currently only supports 1 memory per module, so I can't separate them. I can allocate more RAM though, and let the stacks start up higher. |
@remko Oh right, that's how it used to be. Now the stacks are private and not mapped to ram. Do you think you could moved them out of memory and allow for larger roms to be loaded in?