B) A palindrome is a word, phrase, or sequence that reads the same backward as forward. Write an assembly language program which detects whether a string of N characters located at location $1000 is a palindrome or not. N is defined at $1100. (10 points) A) Make Flowchart on Page 8 B) Write Assembly code on Page 9 of this exam C) Submit main.asm and snapshot of output in the comments section of this exam. You can submit main.asm after the deadline, but the code must be the same as in this submission. If N=9, "ALOPAPOLA" is a palindrome. If N=9, "APPLEORAN" is not a palindrome. If N=5, "APLPA" is a palindrome.