mirror of https://github.com/zeldaret/tp.git
24 lines
409 B
C
24 lines
409 B
C
#ifndef _REVOLUTION_OSDC_H_
|
|
#define _REVOLUTION_OSDC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void DCFlashInvalidate(void);
|
|
void DCEnable(void);
|
|
void DCDisable(void);
|
|
void DCFreeze(void);
|
|
void DCUnfreeze(void);
|
|
void DCTouchLoad(void* addr);
|
|
void DCBlockZero(void* addr);
|
|
void DCBlockStore(void* addr);
|
|
void DCBlockFlush(void* addr);
|
|
void DCBlockInvalidate(void* addr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|