0.9.0 • Published 10 years ago

nesly-split v0.9.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

nesly-split

split out the CHR and PRG of a NES Rom

Install

npm i nesly-split

Example

var neslySplit = require('nesly-split');
var fs = require('fs');

var s = fs.createWriteStream('mario.chr');

neslySplit('smb.nes', function (err, data) {
    if (!err) {
      s.write(data.chr);
    }
});

Now you can open up mario.chr in your favorite NES CHR editor and you should see all the sprites in the game!

0.9.0

10 years ago

0.8.0

10 years ago

0.7.0

10 years ago

0.6.0

10 years ago

0.5.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.2

10 years ago

0.0.1

11 years ago