1 2 3 4 5 6 7 8 9 10 11
namespace Ryujinx.Tests.Unicorn { public enum MemoryPermission { NONE = 0, READ = 1, WRITE = 2, EXEC = 4, ALL = 7, } }