Ref:Inline assembly for IA-64

Hi,
I am trying to write some inline assembly code for the 64-bit enviornment
in Windows.net.
I am not sure how to write the assembly code for the same. I believe
__asm{} won’t work with the 64-bit enviornment.

Any help is appreciated.

Thanks in Advance,

You have to create a separate file for the function that you want to
write in assembly.

But ask yourself if you have a really, really good reason to bother. I
don’t know anybody who thinks that they can write IPF Assembler better
than a compiler. Why not just write it in C? You can compile the C
file into your IA-64 binary while you are still compiling x86 assembler
into your x86 binary. If you’re really doing something that can’t be
done in C, there are probably compiler intrinsics for it.

  • Jake Oshins

-----Original Message-----

Hi,
I am trying to write some inline assembly code for the 64-bit
enviornment
in Windows.net.
I am not sure how to write the assembly code for the same. I believe
__asm{} won’t work with the 64-bit enviornment.

Any help is appreciated.

Thanks in Advance,