1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/sys_ucode.c

18 lines
270 B
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#include <global.h>
2020-03-22 21:19:43 +00:00
u32 SysUcode_GetUCodeBoot() {
2020-03-17 04:31:30 +00:00
return &D_80009320;
}
2020-03-22 21:19:43 +00:00
u32 SysUcode_GetUcodeBootSize() {
2020-03-17 04:31:30 +00:00
return (u32)&D_800093F0 - (u32)&D_80009320;
}
2020-03-22 21:19:43 +00:00
u32 SysUcode_GetUcode() {
2020-03-17 04:31:30 +00:00
return D_8012DBA0;
}
2020-03-22 21:19:43 +00:00
u32 SysUcode_GetUcodeData() {
2020-03-17 04:31:30 +00:00
return D_8012DBA4;
}