UNPKG

nesly-split

Version:

split out the CHR and PRG of a NES Rom

11 lines (9 loc) 299 B
var neslySplit = require('../index.js'); var fs = require('fs'); neslySplit(__dirname+'/sprites.nes', function (err, data) { var chr = fs.createWriteStream('test.chr'); var prg = fs.createWriteStream('test.prg'); chr.write(data.chr); prg.write(data.prg); console.log(data); });