assembly 如何将输入字符串从用户传递到MIPS程序

k75qkfdt  于 2022-11-24  发布在  其他
关注(0)|答案(1)|浏览(84)

我试图解决一个问题,编写汇编语言程序,以检测是否一个短语或字符输入的用户是回文。
我已经做到了这一点,我相信一切都应该工作,但我想知道我如何才能实现这一点,使它需要一个实际的单词来测试。

.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, string_space
li $a1, 1024
li $v0, 8
syscall

la $t1, string_space
la $t2, string_space

length_loop:
lb $t3, ($t2)
beqz $t3, end_length_loop
addu $t2, $t2, 1 
b length_loop

end_length_loop:
subu $t2, $t2, 2

test_loop:
bge $t1, $t2, is_palin

lb $t3, ($t1)
lb $t4, ($t2)
bne $t3, $t4, not_palin

addu $t1, $t1, 1
subu $t2, $t2, 1
b test_loop

is_palin: 
la $a0, is_palin_msg
li $v0, 4
syscall
b exit

not_palin:
la $a0, not_palin_msg
li $v0, 4
syscall
b exit

exit: 
li $v0, 10
syscall

我试过了

string_space: .asciiz "Enter your word:\n"

且还

string_space: .asciiz "racecar"

但我还没完全弄明白。
有什么建议吗?

xggvc2p6

xggvc2p61#

所以--也把这个问题here作为模板[强烈建议您在发布之前检查类似的问题] --您需要在代码中引入一个.data部分,其中包含一个input字符串,要求用户输入要检查的字符串

.data
string_space: .space 1024

input:  .asciiz "Enter a string: "
is_palin_msg: .asciiz "The string is a palindrome.\n"
not_palin_msg: .asciiz "The string is not a palindrome.\n"  
# other strings you may need

然后你就可以开始设置逻辑把他们推出去

.text

main:
    li $v0, 4              # system call code for print_str
    la $a0, input          # address of string to print
    syscall                # print the input

    li $v0, 8              # code for syscall read_string
    la $a0, string_space   # tell syscall where the buffer is
    li $a1, 1024           # tell syscall how big the buffer is
    syscall    

    # double check the buffer content [see the next snippet]

# rest of the code to test

您将开始询问用户一个字符串[在本例中限制为1024个字节/字符]。阅读this link"System Calls and I/O"部分,您将发现上面的片段中使用了相同的提示[在页面中搜索"Print out string (useful for prompts)"]。
同一节中的表将解释li $v0, 4li $v0, 8指令的含义。这是另一个good read。同一个表将使您了解,在调用打印字符串之前,您必须设置一个参数[$a0],而对于读取字符串操作,您将需要两个参数[$a0$a1]
在你的代码中,main以一个读字符串操作开始。但是请注意,string_space既被用来分配缓冲区的大小,从那里读取[在.data部分],也被用来要求输入单词[你正在尝试调用string_space: .asciiz "Enter your word:\n"]。这个问题已经被上面的代码片段修复了
如果出现问题,不要忘记仔细检查string_space缓冲区的内容:

la $a0, string_space  # move buffer into a0
li $v0, 4             # print buffer
syscall

完整代码已测试并在MARS 4.5中运行:

.data
string_space: .space 1024

input:  .asciiz "Enter a string: "
is_palin_msg: .asciiz "The string is a palindrome.\n"
not_palin_msg: .asciiz "The string is not a palindrome.\n"

.text
main: 

li $v0, 4              # system call code for print_str
la $a0, input          # address of string to print
syscall                # print the input

la $a0, string_space
li $a1, 1024
li $v0, 8
syscall

#la $a0, string_space  # move buffer into a0
#li $v0, 4             # print buffer
#syscall

la $t1, string_space
la $t2, string_space

length_loop:
lb $t3, ($t2)
beqz $t3, end_length_loop
addu $t2, $t2, 1 
b length_loop

end_length_loop:
subu $t2, $t2, 2

test_loop:
bge $t1, $t2, is_palin

lb $t3, ($t1)
lb $t4, ($t2)
bne $t3, $t4, not_palin

addu $t1, $t1, 1
subu $t2, $t2, 1
b test_loop

is_palin: 
la $a0, is_palin_msg
li $v0, 4
syscall
b exit

not_palin:
la $a0, not_palin_msg
li $v0, 4
syscall
b exit

exit: 
li $v0, 10
syscall

重要提示:此代码逻辑有一个错误。如果输入长度为奇数的回文,则会给予错误结果[例如,civic被检测为非回文,但实际上它是]

相关问题