mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 15:45:06 -04:00
16 lines
334 B
C
16 lines
334 B
C
|
#include "global.h"
|
||
|
|
||
|
void Audio_InvalDCache(void* buf, size_t size) {
|
||
|
OSIntMask prevMask = osSetIntMask(1);
|
||
|
|
||
|
osInvalDCache(buf, size);
|
||
|
osSetIntMask(prevMask);
|
||
|
}
|
||
|
|
||
|
void Audio_WritebackDCache(void* buf, size_t size) {
|
||
|
OSIntMask prevMask = osSetIntMask(1);
|
||
|
|
||
|
osWritebackDCache(buf, size);
|
||
|
osSetIntMask(prevMask);
|
||
|
}
|