mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 07:38:05 -04:00

Verbatim copy from https://github.com/libretro/picodrive/ commit 9ae88ef15ff00cacc3877c7ecc13b0092bab50b8 , 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.
16 lines
368 B
C
16 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
|