mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-04-19 19:15:28 +00:00
Add PSP support to ELF checking
This commit is contained in:
parent
7b45a190c3
commit
4b566c35fa
1 changed files with 2 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue