vbagx/source/mem2.h

23 lines
429 B
C
Raw Permalink Normal View History

/****************************************************************************
* Visual Boy Advance GX
*
2023-01-30 22:08:08 +01:00
* Tantric 2010-2023
*
* mem2.h
*
* MEM2 memory allocator
***************************************************************************/
#ifdef HW_RVL
#ifndef _MEM2MANAGER_H_
#define _MEM2MANAGER_H_
u32 InitMem2Manager ();
void* mem2_malloc(u32 size);
bool mem2_free(void *ptr);
#endif
#endif