8

我的程序假设读取一个整数并将其打印回用户,但每次它只打印 268501230 无论输入什么。任何帮助,将不胜感激。

.data
prompt2: .asciiz "Please enter value: "
array1: .space 40
array2: .space 40
buffer: .space 4
.text

main: 

#Prints the prompt2 string
li $v0, 4
la $a0, prompt2 
syscall 

#reads one integer from user and saves in t0
li $v0, 5
la $t0, buffer
syscall

li $v0, 1       
li $t0, 5       # $integer to print
syscall         

exitProgram:    li $v0, 10  # system call to
    syscall         # terminate program
4

2 回答 2

15

这就是我将如何编写一个程序来获取整数输入并将其打印出来

.data

     text:  .asciiz "Enter a number: "

.text

 main:
    # Printing out the text
    li $v0, 4
    la $a0, text
    syscall

    # Getting user input
    li $v0, 5
    syscall

    # Moving the integer input to another register
    move $t0, $v0

    # Printing out the number
    li $v0, 1
    move $a0, $t0
    syscall

    # End Program
    li $v0, 10
    syscall
于 2016-12-24T01:11:14.833 回答
9
#reads one integer from user and saves in t0
li $v0, 5
la $t0, buffer
syscall

这不是系统调用 5 的工作方式。整数在 中返回$v0,所以代码应该是这样的:

li $v0,5
syscall
move $t0,$v0

li $v0, 1       
li $t0, 5       # $integer to print
syscall 

您在这里也使用了错误的寄存器。要打印的整数应该进入$a0,而不是$t0

是系统调用列表和它们使用的寄存器

于 2013-11-03T08:43:07.150 回答