mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-05 01:03:43 -04:00
fs: add gc validation wrappers for hac2l
This commit is contained in:
parent
32d443977e
commit
2d984822c6
15 changed files with 939 additions and 6 deletions
|
@ -31,12 +31,19 @@ namespace ams::fs {
|
|||
RootWriteable,
|
||||
};
|
||||
|
||||
enum class GameCardAttribute : u8 {
|
||||
AutoBootFlag = (1 << 0),
|
||||
HistoryEraseFlag = (1 << 1),
|
||||
RepairToolFlag = (1 << 2),
|
||||
DifferentRegionCupToTerraDeviceFlag = (1 << 3),
|
||||
DifferentRegionCupToGlobalDeviceFlag = (1 << 4),
|
||||
enum GameCardAttribute : u8 {
|
||||
GameCardAttribute_AutoBootFlag = (1 << 0),
|
||||
GameCardAttribute_HistoryEraseFlag = (1 << 1),
|
||||
GameCardAttribute_RepairToolFlag = (1 << 2),
|
||||
GameCardAttribute_DifferentRegionCupToTerraDeviceFlag = (1 << 3),
|
||||
GameCardAttribute_DifferentRegionCupToGlobalDeviceFlag = (1 << 4),
|
||||
|
||||
GameCardAttribute_HasHeaderSign2Flag = (1 << 7),
|
||||
};
|
||||
|
||||
enum class GameCardCompatibilityType : u8 {
|
||||
Normal = 0,
|
||||
Terra = 1,
|
||||
};
|
||||
|
||||
using GameCardHandle = u32;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue