mirror of https://github.com/zeldaret/tp.git
21 lines
317 B
C
21 lines
317 B
C
#ifndef _REVOLUTION_OSL2_H_
|
|
#define _REVOLUTION_OSL2_H_
|
|
|
|
#include <revolution/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void L2Enable(void);
|
|
void L2Disable(void);
|
|
void L2GlobalInvalidate(void);
|
|
void L2SetDataOnly(BOOL dataOnly);
|
|
void L2SetWriteThrough(BOOL writeThrough);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|