tuckerpo / chip8

Chip8 interpreter in C++ targetting Linux, Windows and wasm.
0 stars 0 forks source link

Resolve wasm unknown symbol issue #9

Open tuckerpo opened 4 years ago

tuckerpo commented 4 years ago

C++ compilers mangle the piss out of symbols so you need to just through some hoops to bind to JS. Figure out how.

tuckerpo commented 4 years ago

This is specifically relevant for the load_rom routine which dumps a rom into Chip8's memory and begins executing it. Pretty important.