Move voice memory manager code into brand new SPU MMU

This commit is contained in:
Jaby
2024-08-22 20:13:07 +02:00
committed by Jaby
parent 1fc096485d
commit 8e0e8fda7e
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);
}
}