mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-03-26 22:02:38 +01:00
Verbatim copy from https://github.com/libretro/picodrive/ commit
9ae88ef15f , so look there for the history
of libretro specific changes. Unfortunately there is too much noise and
divergence to merge this in a proper way.
17 lines
368 B
C
17 lines
368 B
C
#ifndef _3DS_UTILS_H
|
|
#define _3DS_UTILS_H
|
|
|
|
void ctr_invalidate_ICache(void);
|
|
void ctr_flush_DCache(void);
|
|
|
|
void ctr_flush_invalidate_cache(void);
|
|
|
|
int ctr_svchack_init(void);
|
|
|
|
#include <stdio.h>
|
|
#define DEBUG_HOLD() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);wait_for_input();}while(0)
|
|
|
|
void wait_for_input(void);
|
|
|
|
#endif // _3DS_UTILS_H
|