| ... | @@ -453,10 +453,16 @@ pub const ET = enum(u16) { | ... | @@ -453,10 +453,16 @@ pub const ET = enum(u16) { |
| 453 | /// Core file | 453 | /// Core file |
| 454 | CORE = 4, | 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 | /// Beginning of processor-specific codes | 462 | /// Beginning of processor-specific codes |
| 457 | pub const LOPROC = 0xff00; | 463 | pub const LOPROC = 0xff00; |
| 458 | | 464 | |
| 459 | /// Processor-specific | 465 | /// End of processor-specific codes |
| 460 | pub const HIPROC = 0xffff; | 466 | pub const HIPROC = 0xffff; |
| 461 | }; | 467 | }; |
| 462 | | 468 | |