add basic libretro file wip

This commit is contained in:
R-type
2015-12-15 01:01:43 +01:00
parent 5a96c0ca66
commit 69e30b219a
30 changed files with 6818 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#if defined(__ANDROID__) || defined(ANDROID)
#include <android/log.h>
#define LOG_TAG "RetroArch.atari800"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
#else
#define LOGI printf
#endif