link sys_ucode

This commit is contained in:
Prakxo
2023-04-20 06:51:10 +00:00
parent 7a27cda3a1
commit 4ecb12f3cc
3 changed files with 25 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#include "sys_ucode.h"
s64* poly_tbl[] = {gspF3DZEX2_NoN_PosLight_fifoTextStart, gspF3DZEX2_NoN_PosLight_fifoDataStart};
s64* sprite_tbl[] = {gspS2DEX2_fifoTextStart,gspS2DEX2_fifoDataStart};
s64* ucode_GetPolyTextStart(void){
return poly_tbl[0];
}
s64* ucode_GetPolyDataStart(void){
return poly_tbl[1];
}
s64* ucode_GetSpriteTextStart(void){
return sprite_tbl[0];
}
s64* ucode_GetSpriteDataStart(void){
return sprite_tbl[1];
}