mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:44:43 +01:00
std.elf: Define ET.(LOOS,HIOS) constants.
This commit is contained in:
parent
3b465ebec5
commit
496a067d3f
1 changed files with 7 additions and 1 deletions
|
|
@ -453,10 +453,16 @@ pub const ET = enum(u16) {
|
|||
/// Core file
|
||||
CORE = 4,
|
||||
|
||||
/// Beginning of OS-specific codes
|
||||
pub const LOOS = 0xfe00;
|
||||
|
||||
/// End of OS-specific codes
|
||||
pub const HIOS = 0xfeff;
|
||||
|
||||
/// Beginning of processor-specific codes
|
||||
pub const LOPROC = 0xff00;
|
||||
|
||||
/// Processor-specific
|
||||
/// End of processor-specific codes
|
||||
pub const HIPROC = 0xffff;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue