mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-12 20:13:47 +00:00
* add some headers, split some of z64.h
* MtxClear -> IdentityMtx
* more misc cleanups
* move D_80116280 to header, fix build issue
* remove z64.h
* Revert "MtxClear -> IdentityMtx"
This reverts commit 8fc74c0672
.
* split z64path.h and z64skin.h functions
* z64face_reaction.h
* cleanup overlay global references
* trim padding
* bss
20 lines
471 B
C
20 lines
471 B
C
#include "ultra64.h"
|
|
|
|
u64* sDefaultGSPUCodeText = gspF3DZEX2_NoN_PosLight_fifoTextStart;
|
|
u64* sDefaultGSPUCodeData = gspF3DZEX2_NoN_PosLight_fifoDataStart;
|
|
|
|
u64* SysUcode_GetUCodeBoot(void) {
|
|
return rspbootTextStart;
|
|
}
|
|
|
|
size_t SysUcode_GetUCodeBootSize(void) {
|
|
return (size_t)((u8*)rspbootTextEnd - (u8*)rspbootTextStart);
|
|
}
|
|
|
|
u64* SysUcode_GetUCode(void) {
|
|
return sDefaultGSPUCodeText;
|
|
}
|
|
|
|
u64* SysUcode_GetUCodeData(void) {
|
|
return sDefaultGSPUCodeData;
|
|
}
|