2022-03-21 21:51:23 -04:00
|
|
|
#include "global.h"
|
|
|
|
|
2024-04-04 12:26:14 -04:00
|
|
|
#include "public/bridge/gfxbridge.h"
|
|
|
|
|
|
|
|
UcodeHandlers sDefaultGSPUCodeText = ucode_f3dex2;
|
|
|
|
// u64* sDefaultGSPUCodeData = gspF3DZEX2_NoN_PosLight_fifoDataStart;
|
2022-03-21 21:51:23 -04:00
|
|
|
|
|
|
|
uintptr_t SysUcode_GetUCodeBoot(void) {
|
2024-04-04 12:26:14 -04:00
|
|
|
// return rspbootTextStart;
|
|
|
|
return (uintptr_t)NULL;
|
2022-03-21 21:51:23 -04:00
|
|
|
}
|
|
|
|
|
2024-04-04 12:26:14 -04:00
|
|
|
size_t SysUcode_GetUCodeBootSize(void) {
|
|
|
|
// return (ptrdiff_t)((uintptr_t)rspbootTextEnd - (uintptr_t)rspbootTextStart);
|
|
|
|
return 0;
|
2022-03-21 21:51:23 -04:00
|
|
|
}
|
|
|
|
|
2024-04-04 12:26:14 -04:00
|
|
|
uint32_t SysUcode_GetUCode(void) {
|
|
|
|
return sDefaultGSPUCodeText;
|
2022-03-21 21:51:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uintptr_t SysUcode_GetUCodeData(void) {
|
2024-04-04 12:26:14 -04:00
|
|
|
// return sDefaultGSPUCodeData;
|
|
|
|
return (uintptr_t)NULL;
|
2022-03-21 21:51:23 -04:00
|
|
|
}
|