mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
14 lines
331 B
C
14 lines
331 B
C
#ifndef _3DS_UTILS_H
|
|
#define _3DS_UTILS_H
|
|
|
|
void ctr_flush_invalidate_cache(void);
|
|
|
|
int ctr_svchack_init(void);
|
|
void check_rosalina(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
|