资源简介

1,说明在C中如何调用汇编函数 2,说明在汇编中如何调用C 函数

资源截图

代码片段和文件信息


extern int my_test(int aint b);
extern void my_call_cfun(void);


void User_Test(void)
{
    int sum;

    //调用纯汇编函数
    sum = my_test(12); 
  
    //调用汇编函数并且该函数中调用了C函数
    my_call_cfun();
    
}

void my_print()
{
    //添加自己的代码

    return;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        300  2013-01-23 19:39  UserTeset.c

     文件        672  2013-01-23 19:41  assemble.s

----------- ---------  ---------- -----  ----

                  972                    2


评论

共有 条评论