diff options
| author | Rozelette <Rozelette@users.noreply.github.com> | 2021-03-27 12:44:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-27 12:44:39 -0500 |
| commit | 6536afc6d3ee65c8dc86fa5009fc081242be18fe (patch) | |
| tree | 2406c463c2deec5b26e7bba7f480a4a58f11a229 /src/buffers | |
| parent | 807db1ca549de3d38c42e24eb53f0803023ffcea (diff) | |
Restructure how buffers are set up (#77)
Diffstat (limited to 'src/buffers')
| -rw-r--r-- | src/buffers/gfxbuffers.c | 8 | ||||
| -rw-r--r-- | src/buffers/heaps.c | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/buffers/gfxbuffers.c b/src/buffers/gfxbuffers.c new file mode 100644 index 000000000..cb7e36be0 --- /dev/null +++ b/src/buffers/gfxbuffers.c @@ -0,0 +1,8 @@ +#include <ultra64.h> +#include <global.h> + +u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE]; + +u8 gGfxSPTaskStack[0x400]; + +GfxPool gGfxPools[2]; diff --git a/src/buffers/heaps.c b/src/buffers/heaps.c new file mode 100644 index 000000000..d35d0056e --- /dev/null +++ b/src/buffers/heaps.c @@ -0,0 +1,6 @@ +#include <ultra64.h> +#include <global.h> + +u8 gAudioHeap[0x138000]; + +u32 gSystemHeap[UNK_SIZE]; |
