Question: Write a program using ( Easy68k ). (Assembly Language) Write a 68000 structured assemply language program to take any lowercase string characters and converts them
Write a program using ( Easy68k ). (Assembly Language)
Write a 68000 structured assemply language program to take any lowercase string characters and converts them into uppercase. For instance, string stored as Hello! would be converted into HELLO!.
Hints: The lowercase to uppercase conversion can be accomplished by clearing the sixth bit in the ASCII code byte. It is important to first ensure that the ASCII code to be converted is in the a to z range. Otherwise, you might clear the sixth bit in a non-alphabetic code, such as {, and convert it into some other ASCII character, like [.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
