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.");
  });

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    2

Package Sidebar

Install

npm i elf2ihex

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • morganrallen