The following are ways to use assembly
language with C/C++ code:
- Use separate modules of assembled code
and link them with compiled C/C++ modules (see Section 8.6.1).
- Use assembly language variables and
constants in C/C++ source (see Section 8.6.3).
- Use inline assembly language embedded
directly in the C/C++ source (see Section 8.6.5).
- Use
intrinsics in C/C++ source to directly call an assembly language statement (see Section 8.6.6).