mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-02 04:50:27 +03:00
refactorings
This commit is contained in:
11
X86Disassembler/ProjectSystem/SectionFlags.cs
Normal file
11
X86Disassembler/ProjectSystem/SectionFlags.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace X86Disassembler.ProjectSystem;
|
||||
|
||||
[Flags]
|
||||
public enum SectionFlags
|
||||
{
|
||||
None = 0,
|
||||
Code = 1,
|
||||
Exec = 2,
|
||||
Read = 4,
|
||||
Write = 8
|
||||
}
|
Reference in New Issue
Block a user