Added Mach-O file format
This commit is contained in:
10
src/macho/CPU.go
Normal file
10
src/macho/CPU.go
Normal 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
|
||||
)
|
Reference in New Issue
Block a user