mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-01 12:40:25 +03:00
11 lines
151 B
C#
11 lines
151 B
C#
namespace X86Disassembler.ProjectSystem;
|
|
|
|
[Flags]
|
|
public enum SectionFlags
|
|
{
|
|
None = 0,
|
|
Code = 1,
|
|
Exec = 2,
|
|
Read = 4,
|
|
Write = 8
|
|
} |