1

我正在尝试编写一个 MIPS 汇编程序来从用户那里获取两个整数,将其保存到数组中的内存中并打印出来。这就是我到目前为止所拥有的。我的程序打印了一些我没有输入的大数字。我对这个游戏很陌生。请有人帮忙!

这是我的代码:

.text
.globl main

    main:
        li $v0, 4       
        la $a0, prompt  
        syscall

        li $t0, 0      #count for the loop to get two integers
    getnum:
        li $v0, 5   #read integer
        syscall
        sw $v0, num($s0)    #save the integer from user input into num and $s0 has address for num, I'm not sure if i did this right
        addi $s0, $s0, 4    # increment $s0 by 4 to save another integer
        addi $t0, $t0, 1    #increment the counter
        ble $t0, 1, getnum       #if counter $t0, is less then or equal to 1, it will go through the loop again

    printnum:   
        la $a0, num($s0)        #load address of num to print
        li $v0, 1           #print int
        syscall 
        addi $s0, $s0, 4    
        addi $t1, $t1, 1
        ble $t1, 1, printnum        #does it twice

        li $v0, 10  
        syscall
.data 

    num:
         .word 0, 0  # i want to store my two numbers here
    prompt: 
        .asciiz "Enter 2 positive integers: "
4

1 回答 1

2

你的问题有两个方面。

首先,您正在加载整数的地址而不是实际的整数。将此更改修复lalw.

其次,因为你在循环中增加$s0了两次getnum并立即在循环中使用它,printnum它太超前了,你需要添加move $s0, $zero来解决这个问题。

此外,您的代码似乎依赖于以$s00 值启动程序的事实,这可能不是一个很好的假设。最好将其显式设置为零。

于 2013-11-08T18:49:23.757 回答