Inline Assembly: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
(Reformatted source tags, added info about intel syntax.)
mNo edit summary
Line 1: Line 1:
If you are using a [[GCC]] toolchain, using '''Inline Assembly''' might be a viable option for you. The idea is to embed assembler instructions in your C/C++ code, using the asm keyword.
The idea behind '''Inline Assembly''' is is to embed assembler instructions in your C/C++ code, using the asm keyword, when there's no option but to use assembly language.


==Overview==
==Overview==