FB_X86
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbx86
- Last revised: 2021-10-11
Intrinsic define set by the compiler
Syntax
` FB_X86
`
Description
Define created at compile time if the compilation target uses the X86 or X86_64 CPU architecture, otherwise undefined.
Examples
start GeSHi
vb
#IFDEF __FB_X86__
'...instructions for X86 OSes...
#ELSE
'...instructions for other OSes
#ENDIFend GeSHi
Version
- Since fbc 1.08.0
Differences from QB
- New to FreeBASIC
See also
__FB_ARM__- Compiler Option: -target
Back to DocToc