10 lines
274 B
C++
10 lines
274 B
C++
#pragma once
|
|
#include <PSX/jabyengine.hpp>
|
|
|
|
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);
|
|
}
|
|
} |