real address = f for other compilers

main
serr 2025-01-15 20:37:31 +03:00
parent c545bfbca5
commit db0d83dc73
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,8 @@ byte* AF_address(byte* f) {
#endif #endif
#elif defined(__GNUC__) // GCC #elif defined(__GNUC__) // GCC
real_address = f; real_address = f;
#else // other compilers (it's not a given that it works)
real_address = f;
#endif #endif
return real_address; return real_address;
} }