| description | Learn more about: Assembly-Language Comments | ||||
|---|---|---|---|---|---|
| title | Assembly-Language Comments | ||||
| ms.date | 08/30/2018 | ||||
| helpviewer_keywords |
|
||||
| ms.assetid | 0dc10850-77f5-426e-9dab-185ea28e06e4 |
Microsoft Specific
Instructions in an __asm block can use assembly-language comments:
__asm mov ax, offset buff ; Load address of buffBecause C macros expand into a single logical line, avoid using assembly-language comments in macros. (See Defining __asm Blocks as C Macros.) An __asm block can also contain C-style comments; for more information, see Using C or C++ in __asm Blocks.
END Microsoft Specific