sm64coopdx/src/buffers/gfx_output_buffer.c
2020-06-20 02:49:59 +03:00

12 lines
413 B
C

#include <ultra64.h>
#include "gfx_output_buffer.h"
#ifdef VERSION_EU
// 0x17e00 bytes, aligned to a 0x200-byte boundary through sm64.ld. The alignment
// wastes 0x100 bytes of space.
u64 gGfxSPTaskOutputBuffer[0x2fc0];
#else
// 0x1f000 bytes, aligned to a 0x1000-byte boundary through sm64.ld. (This results
// in a bunch of unused space: ~0x100 in JP, ~0x300 in US.)
u64 gGfxSPTaskOutputBuffer[0x3e00];
#endif