Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
$ 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();
```