elf2ihex

1.0.0 • Public • Published

elf2ihex

Dumps .text and .data objects (or others) to Intel Hex format.

usage

  var e2i = elf2ihex();
  var rs = fs.createReadStream(path.join(__dirname, "data", "a.out"));
  rs.pipe(e2i);

  e2i.on("data", function(data) {
    console.log(data);
  });

  e2i.on("end", function(data) {
    console.log("upload.");
  });

Package Sidebar

Install

npm i elf2ihex

Weekly Downloads

7

Version

1.0.0

License

MIT

Last publish

Collaborators

  • morganrallen