Question: ( 4 0 pts ) Write a complete subroutine in ARM assembly, ToLower, that is passed a pointer to a null - terminated character array
pts Write a complete subroutine in ARM assembly, ToLower, that is passed a pointer to a nullterminated character array string The subroutine should modify the string by converting uppercase letters to the corresponding lowercase letters. Lowercase letters, numbers, and other characters should not be modified. For example, when passed the string "HELLO the subroutine should modify the string to read "hello The subroutine does not return a value and must conform to the ARM procedure calling standard. The equivalent Ccode declaration for the function is shown below. For reference, an ASCII table is included at the end of this document.
void ToLowerchar str;
a pts Draw a flowchart for the ToLower subroutine:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
