1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00
GLideN64/RDP.h
2015-05-13 10:13:43 +06:00

20 lines
221 B
C

#ifndef RDP_H
#define RDP_H
typedef struct
{
u32 w2, w3;
u32 cmd_ptr;
u32 cmd_cur;
u32 cmd_data[0x1000];
} RDPInfo;
extern RDPInfo RDP;
void RDP_Init();
void RDP_Half_1(u32 _c);
void RDP_ProcessRDPList();
#endif