Answer this question:
Write a procedure to change an uppercase letter in EAX to alowercase letter. Return the result back to eax. Document theprocedure by providing a brief description of the procedure, listof input parameters (Receives), values returned by the procedure(Returns) and any special requirements (preconditions).
Code from question:
.data
my Letter BYTE ‘A,’ 0
.code
LowerCase PROC
; insert code here
LowerCase ENDP
main PROC
movzx eax, myLetter
call LowerCase
mov myLetter, al
mov edx, OFFSET myLetter
call MsgBox
main ENDP
Expert Answer
An answer will be send to you shortly. . . . .