Hello,
I want to write an assembly function having the prototype : long long fastmul(long long a,long long b); which I declared at my main.c
If I write the following code for the assembly function :
.global _fastmul
_fastmul:
...
B B3
That function return only the content of the 32-bit register A4 ; it's supposed to return 64-bit data (perhaps A5:A4) .. what I'm missing ?
Thanks