al - Audio Library Functions gDP - DP GBI Macros gdSP - General GBI Macros gSP - SP GBI Macros gt - Turbo Microcode RDP gu - Graphics Utilities Math - Math Functions nuSys - NuSystem os - N64 Operating System sp - Sprite Library Functions uh - Host to Target IO 64DD - N64 Disk Drive
|
nuGfxSetUcodeFormatvoid nuGfxSetUcode(NUUCode* ucode) Arguments
none What This Macro Does It registers the graphics microcode. It registers the graphics microcode structure array in the Graphics Task Manager. Graphics microcode structures are defined as follows: typedef struct st_Ucode { u64* ucode; u64* ucide_data; } NUUCode;Example */ graphics microcode structure array */ static NUUcode gfxUcode[] = { {(u64*)gspF3DEX_fifoTextStart, (u64*)gspF3DEX_fifoDataStart}, {(u64*)gspL3DEX_fifoTextStart, (u64*)gspL3DEX_fifoDataStart}, }; void gfxUcodeSet(void) { */ register graphics microcode */ nuGfxUcodeSet(gfxUcode); .......}See Also nuGfxTaskStart
|