NESemu/README.md

20 lines
908 B
Markdown
Raw Permalink Normal View History

2022-02-28 15:04:25 +00:00
# NESemu
NESemu is my fourth attempt at writing a working Nintendo NES Emulator.
2022-02-28 15:05:05 +00:00
This time I'm also writing a Debugger that will hopefully help me finish the project.
2022-02-28 15:04:25 +00:00
![View of the Debugger](imgs/debug_example.png)
2022-03-30 17:53:37 +00:00
Also I'm writing it in C++ this time, My previous attempt is [here](https://github.com/Lauchmelder23/NESEmulator).
2022-02-28 15:04:25 +00:00
## Libraries
* [spdlog](https://github.com/gabime/spdlog) for logging
* [GLFW](https://github.com/glfw/glfw) for window and event handling
* [GLAD](https://glad.dav1d.de/) to load OpenGL
* [ImGui](https://github.com/ocornut/imgui) for the GUI
## Resources
* [Nesdev Wiki](https://wiki.nesdev.org/w/index.php) - Probably the most exhaustive NES documentation available on the internet
2022-03-30 17:53:37 +00:00
* [Masswerk](https://www.masswerk.at/6502/6502_instruction_set.html) - Exhaustive list of official and illegal instructions (there are some errors regarding the cycles of illegal opcodes)