mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
21 lines
449 B
C
21 lines
449 B
C
#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];
|
|
} |