mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-07-05 15:19:42 -07:00
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg * Fixed libultra compilation flags * Matched viblack * Matched virepeatline, visetmode, visetspecial and viswapbuf * Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread * Fixed bss bs * Matched even more libultra stuff * Matched even more * __osRdbSend * Decompiled most of the functions of libultra <3 * Matched last functions * Added a separation to libultra macros * Removed ARRLEN from controller.h * Fix libultra warnings --------- Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
14 lines
289 B
C
14 lines
289 B
C
#include "PR/os_internal.h"
|
|
#include "PR/R4300.h"
|
|
#include "osint.h"
|
|
|
|
u32 osVirtualToPhysical(void* addr) {
|
|
if (IS_KSEG0(addr)) {
|
|
return K0_TO_PHYS(addr);
|
|
} else if (IS_KSEG1(addr)) {
|
|
return K1_TO_PHYS(addr);
|
|
} else {
|
|
return __osProbeTLB(addr);
|
|
}
|
|
}
|