Files
Shiip-of-Hakinian-Espanol/soh/src/code/sys_ucode.c
briaguya 57c368aa2c update lus includes for new LUS file structure (#5820)
* Bump LUS to include FileDropMgr's new registration system and initial cursor visibility changes.

* New LUS ref.

* Remove default on for cursor always visible.
Add option to camera controls next to enable mouse input for autocapture.
Set autocapture on startup.

* next LUS

* clang again

* Add "EnableMouse" CVar check to startup SetAutoCaptureMouse.

* Back to LUS main.

* lus version with fixes we need

* very wip

* get it building

* soh otr

* bump lus before fixing soh side stuff

* build

* still builds

* mac error

* bump otrexporter

* bump to lus main

* upstream otrexporter

---------

Co-authored-by: Malkierian <malkierian@gmail.com>
Co-authored-by: briaguya <70942617+briaguya-ai@users.noreply.github.com>
2025-10-09 16:50:51 -07:00

26 lines
609 B
C

#include "global.h"
#include <libultraship/bridge/gfxbridge.h>
UcodeHandlers sDefaultGSPUCodeText = ucode_f3dex2;
// u64* sDefaultGSPUCodeData = gspF3DZEX2_NoN_PosLight_fifoDataStart;
uintptr_t SysUcode_GetUCodeBoot(void) {
// return rspbootTextStart;
return (uintptr_t)NULL;
}
size_t SysUcode_GetUCodeBootSize(void) {
// return (ptrdiff_t)((uintptr_t)rspbootTextEnd - (uintptr_t)rspbootTextStart);
return 0;
}
uint32_t SysUcode_GetUCode(void) {
return sDefaultGSPUCodeText;
}
uintptr_t SysUcode_GetUCodeData(void) {
// return sDefaultGSPUCodeData;
return (uintptr_t)NULL;
}