在用 c 编译内联汇编代码时出现错误:
no such instruction:dd 0;
这是我的代码:
asm(
".data"
"big: dd 0\n"
".text\n"
"mov out1,%eax\n"
"add %eax,out2"
);
我正在尝试创建一个双字变量,稍后我将分配out2
(这是 c 变量)给它。任何人都可以帮忙吗?