| author | |
| committer | |
| log | 496a067d3f7c2d48c68ff0adae389994e68b70ba |
| tree | 49a85767f49a558096c138ed845872203eda2625 |
| parent | 3b465ebec59ee942b6c490ada2f81902ec047d7f |
| signature | Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM |
1 files changed, 7 insertions(+), 1 deletions(-)
lib/std/elf.zig+7-1| ... | ... | @@ -453,10 +453,16 @@ pub const ET = enum(u16) { |
| 453 | 453 | /// Core file |
| 454 | 454 | CORE = 4, |
| 455 | 455 | |
| 456 | /// Beginning of OS-specific codes | |
| 457 | pub const LOOS = 0xfe00; | |
| 458 | ||
| 459 | /// End of OS-specific codes | |
| 460 | pub const HIOS = 0xfeff; | |
| 461 | ||
| 456 | 462 | /// Beginning of processor-specific codes |
| 457 | 463 | pub const LOPROC = 0xff00; |
| 458 | 464 | |
| 459 | /// Processor-specific | |
| 465 | /// End of processor-specific codes | |
| 460 | 466 | pub const HIPROC = 0xffff; |
| 461 | 467 | }; |
| 462 | 468 |