A function written in C has the prototype:
void my_function(float a. double b, float c);
The function is built and linked into an application using hard floating-point linkage. What registers are used to pass arguments to the function?
Select an option, then click Submit answer.
-
○
a->s0; b->d0; c->s1
-
○
a->s0; b->d1; c->s1
-
○
a->d0; b->d1; c->d2
-
○
a->s0; b->d1; c-> s2