Help with Assembly Code:
Hello, I have a code that converts letters from uppercase tolowercase, but I want it to convert the letters from lowercase touppercase instead. I would also like to include in a code in thiscode that will convert numbers into binary. I will also be removingthis code’s ability to return a reverse output. Thank you.
Here is the code below:
INCLUDE Irvine32.inc
.dataMAX = 129prompt BYTE “Enter a string of at most 128 characters: “,0prompt2 BYTE ” “,0prompt3 BYTE “Here it is in LOWERCASE and in reverse order: “,0myStr BYTE MAX+1 DUP(?)myStr2 BYTE MAX+1 DUP(?)strSize DWORD ?.codemain PROC
OR
OR