mirror of
https://github.com/pskupinski/65816.js.git
synced 2026-04-16 10:23:00 +00:00
restructure
This project's goal is to fully emulate the 65816 microprocessor in JavaScript.
After achieving that goal the next step will be to create a new branch that will focus on emulating the SNES. Any CPU related improvements that aren't specific to the SNES will be merged back.
Here is a short example of how to use the emulator:
var cpu = new CPU_65816();
cpu.load_binary("18fba9ff", 0x8000); // Load the program at 0x8000 in memory
cpu.execute(0x8000); // Execute starting at 0x8000
Description
Languages
JavaScript
97.7%
CSS
2%
HTML
0.3%