Using the windows 32 framework , write an assemblylanguage program ;
write a procedure to read a string and
shift each character of the string by one. As an example, if yourinput string is Abcz,
your output should be Bcda. Note that you must test your string fornon-alphabetic
characters (such as numbers and special characters). If there arenon-alphabetic characters, you should terminate your program withan appropriate message. You should
display your converted string using the output macro.
Hint: Let your procedure returns an empty string, if the parameteris not valid. Then
depending on the return value, print an appropriate message in yourmain procedure.