1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-10 06:30:13 +00:00
oot/src/buffers/gfxbuffers.c
Tharo c521f1f8ae
Remove gSystemHeap and use _buffersSegmentEnd instead, make buffer alignments explicit for gcc (#1901)
* 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
2024-02-27 19:01:47 -05:00

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];