Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 14 days 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T17:32:41.000Z (over 7 years ago)
- Last Synced: 2024-10-10T16:30:55.447Z (26 days ago)
- Topics: 6502, emulation, emulator, javascript, nes, nes-emulator
- Language: JavaScript
- Size: 94.7 KB
- Stars: 13
- Watchers: 5
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# js-nes-emulator
[![Build Status](https://travis-ci.org/liamg/js-nes-emulator.svg?branch=master)](https://travis-ci.org/liamg/js-nes-emulator) [![Coverage Status](https://coveralls.io/repos/liamg/js-nes-emulator/badge.svg?branch=master)](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
$ gruntYou 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();
```