mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-28 00:30:37 +00:00
2f1e7b3de8
* Use STACK and STACK_TOP everywhere * format * remove fake variable * bss * review Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * Update src/boot_O2_g3/boot_main.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * review * renames * more renames * and more * whoopsie, forgot those too * hopefully the last cleanup * forgot some stuff * a * bss --------- Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
21 lines
411 B
C
21 lines
411 B
C
#ifndef BUFFERS_H
|
|
#define BUFFERS_H
|
|
|
|
#include "z64.h"
|
|
#include "macros.h"
|
|
#include "stack.h"
|
|
|
|
|
|
extern u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE];
|
|
extern STACK(gGfxSPTaskStack, 0x400);
|
|
extern GfxPool gGfxPools[2];
|
|
extern u8 gAudioHeap[0x138000];
|
|
extern u8 gSystemHeap[];
|
|
|
|
extern u8 gPictoPhotoI8[PICTO_PHOTO_SIZE];
|
|
extern u8 D_80784600[0x56200];
|
|
extern u16 gFramebuffer0[SCREEN_HEIGHT][SCREEN_WIDTH];
|
|
|
|
|
|
#endif
|