Panda3DS/include/kernel/config_mem.hpp
2022-09-21 22:49:22 +03:00

11 lines
No EOL
209 B
C++

#pragma once
#include "helpers.hpp"
// Configuration memory addresses
namespace ConfigMem {
enum : u32 {
KernelVersionMinor = 0x1FF80002,
KernelVersionMajor = 0x1FF80003,
AppMemAlloc = 0x1FF80040
};
}