mk64/src/main.h

15 lines
197 B
C

#ifndef MAIN_H
#define MAIN_H
#include "types.h"
#define GFX_POOL_SIZE 6400
struct GfxPool {
Gfx buffer[GFX_POOL_SIZE];
struct SPTask spTask;
};
extern struct GfxPool *gGfxPool;
#endif