Write a program all written in assembly that inputs an entire line of text, up t
ID: 3571416 • Letter: W
Question
Write a program all written in assembly that inputs an entire line of text, up to 132 characters, into a buffer. Then have your program determine how many times each letter of the alphabet occurs You are to count all letters a-z, A-Z, and 0-9 only Your screen output is to look similar to a - 6 times b - 3 times c-5 times etc, only display the letters you are counting. You will declare a input buffer called Char Input (i.e. array) and write the code to count the number of a's that occur, b's, etc and then display them. You will have another buffer Char Count that will hold the char accounts.Explanation / Answer
CharCount.asm