mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
13 lines
208 B
C
13 lines
208 B
C
#ifndef OSCACHE_H
|
|
#define OSCACHE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
extern "C" {
|
|
void DCInvalidateRange(void*, u32);
|
|
void DCStoreRange(void*, u32);
|
|
void DCStoreRangeNoSync(void*, u32);
|
|
}
|
|
|
|
#endif /* OSCACHE_H */
|