Question
# PART 3 (ReadFile) # # You will read characters (bytes) from a file (lab2_data.dat) and print them. Valid characters are only spaces (ASCII code
# PART 3 (ReadFile)
# # You will read characters (bytes) from a file (lab2_data.dat) and print them. Valid characters are only spaces (ASCII code 32),
#Exclamation points (ASCII code 33), and uppercase letters (A-Z).
#Lower case letters should be converted to uppercase and eveything else should be discarded
#The expected output should be in one line and read: THIS WAS A SUCCESS!
# $a1 : address of the input buffer
file_read:
li $v0, 13
la $a0, file
add $a1, $0, $0
add $a2, $0, $0
syscall
add $s0, $v0, $0
li $v0, 14
add $a0, $s0, $0
la $a1, buffer
li $a2, 30
syscall
############################### Part 3: your code begins here ##
############################### Part 3: your code ends here ##
done:
li $v0, 16
add $a0, $s0, $0
syscall
jr $ra
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started