Enable compilation of project on AArch64 architecture

This commit is contained in:
Alex
2023-04-04 16:06:54 +03:00
parent c4ae288ef1
commit 4e20d4d9f4
28 changed files with 242 additions and 50 deletions

View File

@ -43,7 +43,11 @@ EXTERNC SafeFunction NIF void __cyg_profile_func_enter(void *Function, void *Cal
return;
while (Wait)
#if defined(a64) || defined(a32)
asmv("pause");
#elif defined(aa64)
asmv("yield");
#endif
Wait = true;
if (Level > 40)
@ -76,7 +80,11 @@ EXTERNC SafeFunction NIF void __cyg_profile_func_exit(void *Function, void *Call
return;
while (Wait)
#if defined(a64) || defined(a32)
asmv("pause");
#elif defined(aa64)
asmv("yield");
#endif
Wait = true;
if (Level > 40)