mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2025-10-30 08:02:29 +00:00
Convert indentation to spaces (#3)
This commit is contained in:
parent
b47b52f540
commit
7f55d26948
7 changed files with 143 additions and 143 deletions
|
|
@ -5,8 +5,8 @@
|
|||
#define K2BASE 0xC0000000
|
||||
#define IS_KSEG0(x) ((u32)(x) >= K0BASE && (u32)(x) < K1BASE)
|
||||
#define IS_KSEG1(x) ((u32)(x) >= K1BASE && (u32)(x) < K2BASE)
|
||||
#define K0_TO_PHYS(x) ((u32)(x)&0x1FFFFFFF) /* kseg0 to physical */
|
||||
#define K1_TO_PHYS(x) ((u32)(x)&0x1FFFFFFF) /* kseg1 to physical */
|
||||
#define K0_TO_PHYS(x) ((u32)(x)&0x1FFFFFFF)
|
||||
#define K1_TO_PHYS(x) ((u32)(x)&0x1FFFFFFF)
|
||||
|
||||
u32 osVirtualToPhysical(PTR(void) addr) {
|
||||
uintptr_t addr_val = (uintptr_t)addr;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue