Is it possible to make gcc inline functions from objects assembled with nasm?

前端 未结 0 1367
半阙折子戏
半阙折子戏 2020-12-23 22:59

main.c:

extern void somefunc(int);
int main()
{
    somefunc(0);
}

somefunc.asm:

global somefunc
section .text
somefunc:
    m         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题