Question: do not write the program on the paper, Write the program on text, and run it on QTspim. After run it, send me a screenshot

do not write the program on the paper, Write the program on text, and run it on QTspim. After run it, send me a screenshot of the output and post the whole program on the comment box, thanks you!
4. In the space to the right, construct a program that outputs only the capital letters, spaces, exclamation points, and carriage return/line feeds in the data words "w," "x," and "y" declared in the data statements. Note that this means you will need a loop that analyzes bytes in the three words one at a time, determines if the byte is the ASCII code for a capital letter (ASCII codes 0x41-0x5a), space (Ox20), exclamation point (0x21) or CR/LF (0x0a). If the byte is one of these characters, the program will print it out using syscall 11. If not, the byte is discarded and the next byte is loaded and analyzed Note that your loop will need a counter to determine when you have analyzed all the bytes. When the analysis is complete, end the program as usual. In your email to the TA with the attached programs, write out the contents of the print-out. .data W: X: y: word 0x44305455 word 0x43314520 word 0x0a213753
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
