diff --git a/include/common.h b/include/common.h index cb0962b56..3c6245e52 100644 --- a/include/common.h +++ b/include/common.h @@ -72,12 +72,8 @@ extern int DBGLEVEL; #endif -#if defined(__APPLE__) -#define RAMFUNC __attribute((long_call, section(".ramfunc"))) -#else +//#define RAMFUNC __attribute((long_call, section(".ramfunc"))) #define RAMFUNC __attribute((long_call, section(".ramfunc"))) __attribute__((target("arm"))) -#endif - #ifndef ROTR # define ROTR(x,n) (((uintmax_t)(x) >> (n)) | ((uintmax_t)(x) << ((sizeof(x) * 8) - (n))))