* GB: integrated SameBoy v0.12.1 by Lior Halphon
* SFC: added HG51B169 (Cx4) math tables into bsnes binary
This commit is contained in:
byuu
2019-07-17 21:11:46 +09:00
parent 382e192647
commit 903d1e4012
743 changed files with 1460 additions and 5327 deletions

4
libco/ppc.c Normal file → Executable file
View File

@@ -1,3 +1,5 @@
/* ppc64le (ELFv2) is not currently supported */
#define LIBCO_C
#include "libco.h"
#include "settings.h"
@@ -36,7 +38,7 @@ static thread_local cothread_t co_active_handle = 0;
/* whether function calls are indirect through a descriptor, or are directly to function */
#ifndef LIBCO_PPCDESC
#if !_CALL_SYSV && (_CALL_AIX || _CALL_AIXDESC || LIBCO_PPC64)
#if !_CALL_SYSV && (_CALL_AIX || _CALL_AIXDESC || (LIBCO_PPC64 && (!defined(_CALL_ELF) || _CALL_ELF == 1)))
#define LIBCO_PPCDESC 1
#endif
#endif