mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-23 23:50:55 -05:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Tests.Unicorn/MemoryPermission.cs
Normal file
14
src/Ryujinx.Tests.Unicorn/MemoryPermission.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Tests.Unicorn
|
||||
{
|
||||
[Flags]
|
||||
public enum MemoryPermission
|
||||
{
|
||||
None = 0,
|
||||
Read = 1,
|
||||
Write = 2,
|
||||
Exec = 4,
|
||||
All = 7,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user