https://github.com/liamg/js-nes-emulator
NES emulator in javascript.
https://github.com/liamg/js-nes-emulator
6502 emulation emulator javascript nes nes-emulator
Last synced: about 1 year ago
JSON representation
NES emulator in javascript.
- Host: GitHub
- URL: https://github.com/liamg/js-nes-emulator
- Owner: liamg
- License: gpl-3.0
- Created: 2015-05-04T10:26:09.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T17:32:41.000Z (over 9 years ago)
- Last Synced: 2025-03-31T04:32:22.675Z (about 1 year ago)
- Topics: 6502, emulation, emulator, javascript, nes, nes-emulator
- Language: JavaScript
- Size: 94.7 KB
- Stars: 13
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# js-nes-emulator
[](https://travis-ci.org/liamg/js-nes-emulator) [](https://coveralls.io/r/liamg/js-nes-emulator?branch=master)
NES emulator implemented in JavaScript.
Everything is NTSC unless specified.
## Build
[Grunt](http://gruntjs.com) is used to build the project:
$ npm install
$ grunt
You will then find ``js-nes-emulator.min.js`` in ``dist/``.
## Test
You can run tests with grunt too, via QUnit:
$ grunt test
## Usage
```
var nes = new JNE.NES();
nes.loadRom(romData);
nes.start();
```