Skip to content

Commit

Permalink
elf: add MIPSr6 elf e_flag const support
Browse files Browse the repository at this point in the history
  • Loading branch information
Fearyncess committed Sep 6, 2021
1 parent 9fd1ed0 commit 967c6f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/elf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2391,6 +2391,10 @@ pub const EF_MIPS_ARCH_64: u32 = 0x6000_0000;
pub const EF_MIPS_ARCH_32R2: u32 = 0x7000_0000;
/// MIPS64r2 code.
pub const EF_MIPS_ARCH_64R2: u32 = 0x8000_0000;
/// MIPS32r6 code
pub const EF_MIPS_ARCH_32R6: u32 = 0x9000_0000;
/// MIPS64r6 code
pub const EF_MIPS_ARCH_64R6: u32 = 0xa000_0000;

// MIPS values for `Sym32::st_shndx`.

Expand Down

0 comments on commit 967c6f1

Please sign in to comment.