在 Visual Studio 2010 中,是否可以为汇编语言过程启用代码折叠?我正在尝试找到一种在 MASM 中展开/折叠过程的方法,例如:
moveNextDigitIntoX PROC
;Is it possible to enable code folding in Visual Studio so that procedures like this one will be collapsible?
mov eax, 10;
ret;
moveNextDigitIntoX ENDP