Question: ASSEMBLY LANGUAGE PROBLEM Lab_07.asm prints a string of 10 characters length to the screen (defined in the data segment). Modify the X86- series assembly language
ASSEMBLY LANGUAGE PROBLEM
Lab_07.asm prints a string of 10 characters length to the screen (defined in the data segment). Modify the X86- series assembly language program Lab_07.asm by converting all lowercase letters of the string into uppercase letters, before printing. Do this by looping through all the characters of the string and checking the ASCII value of each character, and converting when necessary. Sample execution is provided below: ABCDEFGHIJ Evaluation: Solutions that correctly convert lowercase letters to uppercase will receive 8 marks. The remaining 2 marks are based on the quality of your solution. Hint: Upper case letters have ASCII values 65-90 (base 10) while lower case letters have ASCII values 97-122 (base 10).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
