mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
14 lines
253 B
C
14 lines
253 B
C
#ifndef J3DGD_H
|
|
#define J3DGD_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "dolphin/gx/GX.h"
|
|
|
|
static inline void J3DFifoLoadIndx(u8 cmd, u16 indx, u16 addr) {
|
|
GFX_FIFO(u8) = cmd;
|
|
GFX_FIFO(u16) = indx;
|
|
GFX_FIFO(u16) = addr;
|
|
}
|
|
|
|
#endif /* J3DGD_H */
|