#ifndef __DYNAREC_HELPER__H_ #define __DYNAREC_HELPER__H_ #ifdef ARM64 #include "arm64/dynarec_arm64_helper.h" #elif defined(LA464) #include "la464/dynarec_la464_helper.h" #else #error Unsupported architecture #endif #endif //__DYNAREC_HELPER__H_