This is an ARM ASSEMBLER PROGRAM, please only answer this problem…

Question Answered step-by-step This is an ARM ASSEMBLER PROGRAM, please only answer this problem… This is an ARM ASSEMBLER PROGRAM, please only answer this problem with a program written in ARM Assembler.QUESTION: write an ARM assembler program that will add two floating point numbers (float) assume that the floats are stored in IEEE 754 format, the program should include two or more functions, at minimum it must have: addfloat.s, main.s. The function “addfloat” takes in input (two float), adds them, and then return the result plus a main function that sets up your inputs and call addfloat function. For reference, the function “addfloat.s” should look like the following:float addfloat(float, float); And “main.s” should implement the following C code into assembler, needs to store EXACT floating points in IEEE 754 format.int main(){float a = 1.5, b = 23.4, c;c = addfloat(a, b);printf(“%fn”, c);} Engineering & Technology Computer Science Share QuestionEmailCopy link Comments (0)