UNPKG

@bugsplat/sysvelf

Version:

An Executable and Linkable Format (ELF) parser.

14 lines (13 loc) 240 B
/** * Data (aka encoding) constants. * * System V Application Binary Interface, section 4 (pg. 52) * http://www.sco.com/developers/devspecs/gabi41.pdf */ module.exports = { NONE : 0, LSB : 1, LE : 1, MSB : 2, BE : 2, }