Added Mach-O file format

This commit is contained in:
2024-08-11 21:15:47 +02:00
parent cc215a27c7
commit 58f010b81a
10 changed files with 266 additions and 4 deletions

10
src/macho/CPU.go Normal file
View File

@ -0,0 +1,10 @@
package macho
type CPU uint32
const (
CPU_X86 CPU = 7
CPU_X86_64 CPU = CPU_X86 | 0x01000000
CPU_ARM CPU = 12
CPU_ARM_64 CPU = CPU_ARM | 0x01000000
)