mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-04 16:53:48 -04:00
Add mmu table builder functions (mmu.h)
This commit is contained in:
parent
9baab1aebc
commit
5681622f65
2 changed files with 159 additions and 0 deletions
|
@ -4,6 +4,9 @@
|
|||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#define BIT(x) (1u << (x))
|
||||
#define BITL(x) (1ull << (x))
|
||||
|
||||
void panic(void);
|
||||
|
||||
uint32_t get_physical_address(void *vaddr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue