specification functionality the functionality of your program wi ll be as follows 1 5154597
Specification Functionality The functionality of your program wi ll be as follows: 1. Read two program arguments: signed decimal numbers[-64, 63] 2. Print the user inputs 3. Convert the ASCII strings into two sign-extended integer values a. Convert the first program argument to a 32-bit two's complement number, stored in register $s1 b. Convert the second program argument to a 32-bit two's complement number, stored in register $s2 4. Add the two integer values, store the sum in $se 5. Print the sum as a decimal to the console 6. Print the sum as 32-bit two's complement binary number to the console 7. (Extra credit) Print the sum as a decimal number expressed in Morse code. a. Use a period (ASCII code ex2E) for “dots” and a hyphen (ASCII code ex2D) for “dashes”. b. Insert a space (ASCII code 0x20) between characters. c. Don't forget to print the Morse code for a minus sign if the number is negative!