Add PSP support to ELF checking

This commit is contained in:
jvyden 2022-07-26 21:41:03 -04:00
parent 7b45a190c3
commit 4b566c35fa
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -23,9 +23,10 @@ public class ElfFile {
Big = 0x02,
}
private enum InstructionSetArchitecture : UInt16 {
private enum InstructionSetArchitecture : ushort {
PowerPC = 0x15, //64-bit PowerPC (PS3)
ARM = 0x28, //32-bit ARM (Vita)
MipsRS3000, // MIPS RS3000 Big-Endian 32bit (PSP)
}
public string Name { get; } = "Binary Blob";