mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
17 lines
No EOL
467 B
JavaScript
17 lines
No EOL
467 B
JavaScript
var TwoLevelHintsCommand = function TwoLevelHintsCommand(cmd, cmdsize, offset, nhints) {
|
|
this.cmd = cmd || 0x00000000;
|
|
this.cmdsize = cmdsize || 0x00000000;
|
|
this.offset = offset || 0x00000000;
|
|
this.nhints = nhints || 0x00000000;
|
|
this.toString = function() {
|
|
return JSON.stringify(this);
|
|
};
|
|
};
|
|
|
|
var TwoLevelHint = {
|
|
isub_image:8,
|
|
itoc:24,
|
|
toString: function() {
|
|
return JSON.stringify(this);
|
|
}
|
|
}; |