521751795a
* Some style fixes and nits on ITimeZoneService * Remove some unneeded usings * Remove the Ryujinx.HLE.OsHle.Handles namespace * Remove hbmenu automatic load on process exit * Rename Ns to Device, rename Os to System, rename SystemState to State * Move Exceptions and Utilities out of OsHle * Rename OsHle to HOS * Rename OsHle folder to HOS * IManagerDisplayService and ISystemDisplayService style fixes * BsdError shouldn't be public * Add a empty new line before using static * Remove unused file * Some style fixes on NPDM * Exit gracefully when the application is closed * Code style fixes on IGeneralService * Add 0x prefix on values printed as hex * Small improvements on finalization code * Move ProcessId and ThreadId out of AThreadState * Rename VFs to FileSystem * FsAccessHeader shouldn't be public. Also fix file names casing * More case changes on NPDM * Remove unused files * Move using to the correct place on NPDM * Use properties on KernelAccessControlMmio * Address PR feedback
33 lines
1.5 KiB
C#
33 lines
1.5 KiB
C#
namespace Ryujinx.HLE.Loaders.Npdm
|
|
{
|
|
enum FsPermissionBool : ulong
|
|
{
|
|
BisCache = 0x8000000000000080,
|
|
EraseMmc = 0x8000000000000080,
|
|
GameCardCertificate = 0x8000000000000010,
|
|
GameCardIdSet = 0x8000000000000010,
|
|
GameCardDriver = 0x8000000000000200,
|
|
GameCardAsic = 0x8000000000000200,
|
|
SaveDataCreate = 0x8000000000002020,
|
|
SaveDataDelete0 = 0x8000000000000060,
|
|
SystemSaveDataCreate0 = 0x8000000000000028,
|
|
SystemSaveDataCreate1 = 0x8000000000000020,
|
|
SaveDataDelete1 = 0x8000000000004028,
|
|
SaveDataIterators0 = 0x8000000000000060,
|
|
SaveDataIterators1 = 0x8000000000004020,
|
|
SaveThumbnails = 0x8000000000020000,
|
|
PosixTime = 0x8000000000000400,
|
|
SaveDataExtraData = 0x8000000000004060,
|
|
GlobalMode = 0x8000000000080000,
|
|
SpeedEmulation = 0x8000000000080000,
|
|
NULL = 0,
|
|
PaddingFiles = 0xC000000000800000,
|
|
SaveData_Debug = 0xC000000001000000,
|
|
SaveData_SystemManagement = 0xC000000002000000,
|
|
Unknown0x16 = 0x8000000004000000,
|
|
Unknown0x17 = 0x8000000008000000,
|
|
Unknown0x18 = 0x8000000010000000,
|
|
Unknown0x19 = 0x8000000000000800,
|
|
Unknown0x1A = 0x8000000000004020
|
|
}
|
|
}
|