This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
怎样把math.h中的函数放到RAM中运行
和自定义函数的搬移是一直的,被搬移函数做如下处理:
#pragma CODE_SECTION(“被搬移函数名”, "ramfuncs(搬移区段定义)");
程序运行前,调用搬移函数:
MemCopy(&RamfuncsLoadStart, &RamfuncsLoadEnd, &RamfuncsRunStart) ;
除法运算是符号 "/",没有函数定义,怎么办
那就没有调用函数,你可以看一下汇编级代码有没有调用,这样的话,只要把当前函数搬移就行了
调用了一个叫FS$$DIV的函数,但不知道在什么地方定义的