I have a C function and I want to load data from array of pointers passed to assembler part. How to do this?
float *pointerToBuffer
asm volatile (
"vld1.32 {q0},[%[buf]] \n\t"
: [buf]"+r"(ponterToBuffer)
);
What if the variable was pointerToPointerToBuffer