Added a section for machine code instructions in Mach-O
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-07-09 11:52:17 +02:00
parent f0d43bbee5
commit 4d3b47df32
Signed by: ed
GPG key ID: 49226B848C78F6C8
5 changed files with 47 additions and 11 deletions

View file

@ -0,0 +1,7 @@
package macho
type SectionFlags uint32
const (
FlagPureInstructions SectionFlags = 0x80000000
)