blob: 8fc3eb49bf46a425f47255b70da8d3aa5fdbdd45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SYS_UCODE_H
#define SYS_UCODE_H
#include "ultra64.h"
extern s64 gspF3DZEX2_NoN_PosLight_fifoTextStart[];
extern s64 gspF3DZEX2_NoN_PosLight_fifoDataStart[];
extern u64 gspS2DEX2_fifoTextStart[];
extern u64 gspS2DEX2_fifoDataStart[];
s64* ucode_GetRspBootTextStart(void);
size_t ucode_GetRspBootTextSize(void);
s64* ucode_GetPolyTextStart(void);
s64* ucode_GetPolyDataStart(void);
u64* ucode_GetSpriteTextStart(void);
u64* ucode_GetSpriteDataStart(void);
#endif
|