Move voice memory manager code into brand new SPU MMU

This commit is contained in:
2024-08-22 20:13:07 +02:00
parent f18c1eb137
commit 12de2340cc
5 changed files with 140 additions and 126 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include <PSX/jabyengine.hpp>
namespace JabyEngine {
namespace SPU_MMU {
const uint8_t* allocate(uint8_t voice, size_t size);
void deallocate(uint8_t voice);
}
}