mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
c6f7579939
* sys_ucode OK * add map names for rspboot variables * fixes
22 lines
475 B
C
22 lines
475 B
C
#ifndef SYS_UCODE_H
|
|
#define SYS_UCODE_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
extern s64 gspF3DZEX2_NoN_PosLight_fifoTextStart[];
|
|
extern s64 gspF3DZEX2_NoN_PosLight_fifoDataStart[];
|
|
|
|
extern s64 gspS2DEX2_fifoTextStart[];
|
|
extern s64 gspS2DEX2_fifoDataStart[];
|
|
|
|
|
|
|
|
s64* ucode_GetRspBootTextStart(void);
|
|
size_t ucode_GetRspBootTextSize(void);
|
|
s64* ucode_GetPolyTextStart(void);
|
|
s64* ucode_GetPolyDataStart(void);
|
|
s64* ucode_GetSpriteTextStart(void);
|
|
s64* ucode_GetSpireDataStart(void);
|
|
|
|
#endif
|