0

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!

Without Me It Just Aweso
  • 4,593
  • 10
  • 35
  • 53

1 Answers1

1

Try with the following:

__asm
{
    nop
    mov   eax, 4
}
Gabriele Giuseppini
  • 1,541
  • 11
  • 19