How to pass an input string from user to a MIPS program
问题 I'm trying to solve a problem to write assembly language program to detect if a phrase or characters entered by the user is a palindrome. I've gotten this far, and I believe everything should work, but I'm wondering how I can implement this so that it takes an actual word to test. When I run in MARS, there's simply no input option. .data string_space: .space 1024 is_palin_msg: .asciiz "The string is a palindrome.\n" not_palin_msg: .asciiz "The string is not a palindrome.\n" .text main: la $a0