#pragma once #include namespace JabyEngine { namespace SPU_MMU { // TODO: Make this work with words? Word align? const uint8_t* allocate(uint8_t voice, size_t size); void deallocate(uint8_t voice); } }