mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
7ef1810132
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
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
|