A JavaScript 65816 Microprocessor Emulator
Go to file
Preston Skupinski e7677c81e7 allow bytes_required to be specified as a number for cases where it never changes 2013-08-08 23:43:34 -04:00
test Update the TODO and the copyright email since msu only provides you with access to your @msu.edu email address for two years after graduation 2012-12-02 23:18:41 -05:00
.gitignore updated the TODO and added a .gitignore so my vim *swp files don't accidently wind up in here 2011-04-30 22:24:57 -04:00
65816.js allow bytes_required to be specified as a number for cases where it never changes 2013-08-08 23:43:34 -04:00
README Rework the way the cpu object loads and executes code 2011-11-05 21:45:36 -04:00
TODO Decided loading binaries from a url was not appropriate for the base emulator, whatever is extending it or using it is responsible for that 2012-12-12 22:57:38 -05:00

README

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