Skip to content

Commit

Permalink
Add new pe::IMAGE_FILE_MACHINE_ constants (#717)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton authored Aug 7, 2024
1 parent 4170a3c commit 48f6b29
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,10 @@ pub const IMAGE_FILE_MACHINE_RISCV32: u16 = 0x5032;
pub const IMAGE_FILE_MACHINE_RISCV64: u16 = 0x5064;
/// RISCV128
pub const IMAGE_FILE_MACHINE_RISCV128: u16 = 0x5128;
/// ARM64X (Mixed ARM64 and ARM64EC)
pub const IMAGE_FILE_MACHINE_ARM64X: u16 = 0xA64E;
/// CHPE x86 ("Compiled Hybrid Portable Executable")
pub const IMAGE_FILE_MACHINE_CHPE_X86: u16 = 0x3A64;

//
// Directory format.
Expand Down

0 comments on commit 48f6b29

Please sign in to comment.