mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 07:05:40 +12:00
17 lines
No EOL
422 B
C++
17 lines
No EOL
422 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
|
|
// Configuration memory addresses
|
|
namespace ConfigMem {
|
|
enum : u32 {
|
|
KernelVersionMinor = 0x1FF80002,
|
|
KernelVersionMajor = 0x1FF80003,
|
|
SyscoreVer = 0x1FF80010,
|
|
EnvInfo = 0x1FF80014,
|
|
AppMemAlloc = 0x1FF80040,
|
|
Datetime0 = 0x1FF81020,
|
|
LedState3D = 0x1FF81084,
|
|
BatteryState = 0x1FF81085,
|
|
HeadphonesConnectedMaybe = 0x1FF810C0 // TODO: What is actually stored here?
|
|
};
|
|
} |