由于程序需要在里面嵌套汇编进去,为什么总是提示错误?谢谢
y = add_int( &x, &y ); /* Returns 6 */ 调用。。。
}
}
asm int add_int( int * i, int * j )
{
move.w x:(R2),Y0
move.w x:(R3),X0
add X0,Y0
// int result returned in y0
rts
}
提示错误如下:
= y = add_int( &x, &y ); /* Returns 6 */
>function has no prototype
|