KiwiGrenade / GameBoyWeb

Web based Game Boy emulator written in C++ with Qt framework. Translated into WebAssembly using Emscripten.
GNU General Public License v3.0
2 stars 0 forks source link

Read an article by Roberto Vaccari about GameBoy emulator development #1

Open KiwiGrenade opened 2 months ago

KiwiGrenade commented 2 months ago

Read "A Journey Into GameBoy Emulation" ~ Roberto Vaccari to get an idea where to start.

KiwiGrenade commented 2 months ago

I've read the article down to the Memory section.

I believe it will be best to start with writing the dissassembler first, using just a regular array of bytes as memory.

I'll implement writeToMemory() and readFromMemory() methods, to leave room for future improvments, as mentioned in the guide.