JavaScript NES(Famicom) emulator
This is JavaScript NES(Famicom) emulator which runs on browser.
Demo with Three.js (It has a performance issue!)
WebVR Demo with Three.js (It has a serious performance issue!)
AR Demo with Three.js and jsartoolkit5 (It has a performance issue!)
$ npm install nes-js
$ npm install $ npm run all
This table shows the key - joypad configuration set by
window.onkeydown = function(e) { nes.handleKeyDown(e); }; window.onkeyup = function(e) { nes.handleKeyUp(e); };
| key | joypad | |--------------|--------| | enter | start | | space | select | | cursor-left | left | | cursor-up | up | | cursor-right | right | | cursor-down | down | | x | A | | z | B |
T.B.D.