Question: You have been give palindrome.s, a MIPS assembler problem that reads a line of input and then prints 2 lines. __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ palindrome.s is # read

You have been give palindrome.s, a MIPS assembler problem that reads a line of input and then prints 2 lines. __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ palindrome.s is

# read a line and print whether it is a palindrom

main: la $a0, str0 # printf(\"Enter a line of input: \"); li $v0, 4 syscall

la $a0, line la $a1, 256 li $v0, 8 # fgets(buffer, 256, stdin) syscall #

la $a0, not_palindrome li $v0, 4 syscall

la $a0, palindrome li $v0, 4 syscall

li $v0, 0 # return 0 jr $ra

.data str0: .asciiz \"Enter a line of input: \" palindrome: .asciiz \"palindrome \" not_palindrome: .asciiz \"not palindrome \"

# line of input stored here line: .space 256

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!