次のような非常に基本的な C++ インライン x86-64 アセンブリの例を見つけようとしています。
C/C++ による単純な「Hello World」インライン アセンブリ言語プログラム
char msg[] = "Hello, world";
asm {
mov ax,4 // (I/O Func.)
mov bx,1 // (Output func)
lds cx, msg // (address of the string)
mov dx,6 // (lenght of the string)
int 0x21 // system call
}
これは Intel Compiler で動作します。誰かがこれを手伝ってくれませんか?
EDIT OSに関しては、WindowsとLinuxにICCがあります-Linuxとしましょう!