mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-10 06:30:13 +00:00
* Remove gSystemHeap and use _buffersSegmentEnd instead, make buffer alignments explicit for gcc * ALIGNEDn -> ALIGNED(n), reposition alignment attribute for PreNmiBuff * Correct positioning of ALIGNED for filter data in audio/lib/data.c * Add ALIGNED to TypenameMacros * ALIGNED(4) on same line for PreNmiBuff * Revert audio load.c change, to be submitted separately
9 lines
231 B
C
9 lines
231 B
C
#include "z64.h"
|
|
|
|
ALIGNED(16) u64 gGfxSPTaskOutputBuffer[0x3000];
|
|
|
|
ALIGNED(16) u64 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE / sizeof(u64)];
|
|
|
|
ALIGNED(16) u64 gGfxSPTaskStack[SP_DRAM_STACK_SIZE64];
|
|
|
|
ALIGNED(16) GfxPool gGfxPools[2];
|