ARM/Cortex-A8プロセッサプラットフォームを使用しています。
関数に2つのポインターを渡さなければならない単純な関数があります。これらのポインターは、後でインラインアセンブリコードのみを持つ関数で使用されます。この計画は、パフォーマンスを達成するためだけのものです。
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);
}
ありがとう