質問

How can I build inline assembly with the Microsoft cl tool? when I try the standard

 asm(nop); 

it says unresolved external symbol asm. Any ideas? thanks!

役に立ちましたか?

解決

Try with the following:

__asm
{
    nop
    mov   eax, 4
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top