mirror of
https://github.com/SabreTools/NDecrypt.git
synced 2026-07-08 18:06:38 +00:00
These were originally split out from each other when the models for each of the different cart and digital types were included in this project. After it got split out, and after a lot of recent changes, it was apparent that this split was no longer necessary.
20 lines
429 B
C#
20 lines
429 B
C#
using System;
|
|
|
|
namespace NDecrypt.N3DS
|
|
{
|
|
[Flags]
|
|
internal enum ARM9AccessControlDescriptors : byte
|
|
{
|
|
MountNandRoot = 0x01,
|
|
MountNandroWriteAccess = 0x02,
|
|
MountTwlnRoot = 0x04,
|
|
MountWnandRoot = 0x08,
|
|
MountCardSPI = 0x0F,
|
|
UseSDIF3 = 0x10,
|
|
CreateSeed = 0x20,
|
|
UseCardSPI = 0x40,
|
|
SDApplication = 0x80,
|
|
MoundSdmcWriteAccess = 0xF0,
|
|
}
|
|
}
|