prime/src/musyx/runtime/hw_memory.c

6 lines
138 B
C

#include "musyx/hardware.h"
void* salMalloc(u32 len) { return salHooks.malloc(len); }
void salFree(void* addr) { salHooks.free(addr); }