Ryujinx/Ryujinx.Tests.Unicorn/MemoryPermission.cs
TSRBerry ec8d4f3af5
Replace unicorn bindings with Nuget package (#4378)
* Replace unicorn bindings with Nuget package

* Use nameof for ValueSource args

* Remove redundant code from test projects

* Fix wrong values for EmuStart()

Add notes to address this later again

* Improve formatting

* Fix formatting/alignment issues
2023-02-09 02:24:32 +01:00

14 lines
197 B
C#

using System;
namespace Ryujinx.Tests.Unicorn
{
[Flags]
public enum MemoryPermission
{
None = 0,
Read = 1,
Write = 2,
Exec = 4,
All = 7,
}
}