@remko I was wondering about something, is there something in the uxn wasm core that prevents loading roms larger than 0x10000?
@remko I was wondering about something, is there something in the uxn wasm core that prevents loading roms larger than 0x10000? 6 comments
@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? @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. |
@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.