From db0d83dc733ec0019daf81bd83b820727c66b8b2 Mon Sep 17 00:00:00 2001 From: serr Date: Wed, 15 Jan 2025 20:37:31 +0300 Subject: [PATCH] real address = f for other compilers --- analysis_function.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/analysis_function.h b/analysis_function.h index 2840e0b..08c31f7 100644 --- a/analysis_function.h +++ b/analysis_function.h @@ -21,6 +21,8 @@ byte* AF_address(byte* f) { #endif #elif defined(__GNUC__) // GCC real_address = f; + #else // other compilers (it's not a given that it works) + real_address = f; #endif return real_address; }