我正在使用ARM/Cortex-A8 处理器平台。
我有一个简单的函数,我必须将两个指针传递给一个函数。这些指针稍后在只有我的内联汇编代码的那个函数中使用这个计划只是为了实现性能。
function(unsigned char *input, unsigned char *output)
{
// What are the assembly instructions to use these two pointers here?
// I will inline the assembly instructions here
}
main()
{
unsigned char input[1000], output[1000];
function(input, output);
}
谢谢