__Fb_Arm__
Intrinsic define set by the compiler
__FB_ARM__
Define created at compile time if the compilation target uses the ARM CPU architecture, otherwise undefined.
Syntax
__FB_ARM__
Description
Define created at compile time if the compilation target uses the ARM CPU architecture, otherwise undefined.
Example
#ifdef __FB_ARM__
'...instructions for ARM OSes...
#else
'...instructions for other OSes
#endif
'...instructions for ARM OSes...
#else
'...instructions for other OSes
#endif
Differences from QB
- New to FreeBASIC
See also