mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
9 lines
No EOL
339 B
JavaScript
9 lines
No EOL
339 B
JavaScript
var LinkeditDataCommand = function LinkeditDataCommand(cmd, cmdsize, dataoff, datasize) {
|
|
this.cmd = cmd || 0x00000000;
|
|
this.cmdsize = cmdsize || 0x00000000;
|
|
this.dataoff = dataoff || 0x00000000;
|
|
this.datasize = datasize || 0x00000000;
|
|
this.toString = function() {
|
|
return JSON.stringify(this);
|
|
};
|
|
}; |