__FB_ARM__

Intrinsic define set by the compiler

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 

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfbx86__FB_X86__
	* KeyPgDdfblinux__FB_LINUX__
	* KeyPgDdfbfreebsd__FB_FREEBSD__
	* KeyPgDdfbopenbsd__FB_OPENBSD__
	* KeyPgDdfbnetbsd__FB_NETBSD__
	* KeyPgDdfbcygwin__FB_CYGWIN__
	* KeyPgDdfbdarwin__FB_DARWIN__
	* KeyPgDdfbpcos__FB_PCOS__
	* CompilerOpttargetCompiler Option: -target

