我想知道是否有办法调用 .c 汇编代码?我想将此代码放在我的 .c 文件中
我想在 .c 文件中执行的汇编代码以返回地址
1. mov eax, 0x2d
2. mov ebx, 0
3. int 0x80
我知道答案是 put eax。
这是 .c 文件的一部分:
1. void function(void)
2. {
3. void *sp;
4. sp = eax;
5. fprintf(stderr, "system break: %p\n", sp);
6. }
我该怎么做?