3

に整数を格納しようとして$s0いますが、これはループ ラベルにあります。

しかし、問題は、整数を出力して に保存すること$s0です。

私は次のことをしました

sw $t7,0($s0)
addi $s0,$s0,4

次のようにすると、各整数を のスロットに格納できると思いました$s0が、 の場合lw、出力された最後の整数のみを取得します

以下のコード: 太字で単語を保存しようとしましたが、あなたが言ったように上書きされます

        .data                               


n1:     .asciiz "\n"                        #ASCII for a new line

        .align 2                            



name:   .asciiz "Fibonacci\n\n\n"               #Lab Title and Student Name
        .align 2

msg1:   .asciiz "Fibonacci result " #note the space
        .align 2                            


msg2:   .asciiz " is "                      #note the space
        .align 2

**array:  .space 20                     #define the array**

        .text                               #
        .globl  main                        #declare main to be global



main:   



        la  $a0,name                        #load the ram address of "name" into $a0
        li  $v0,4                           #system call, type 4, print a string, $a0
        syscall                             #call the "OS" to perform operation

        li  $t2,0                           # $t2 :=0; initial value of F(n-2)
        li  $t1,1                           # $t1 :=1; initial value of F(n-1)

        li  $t4,0                           #index, n.

                                            #loop is a local Variable
        li  $t5,11                      #loading immediate preset value for $t5 




        **la $t7,array                      #load address (array) into $t7**





loop:   addu    $t0,$t1,$t2                 # F(n) = F(n-1) + F(n-2)

        **#Only print the last 5 numbers**
        sub $t3,$t5,$t4
        li $t6,5
        bgt $t3,$t6,Printl


        la $a0,msg1                         # $a0 := address of message 1
        li $v0,4                            #system call, type 4, print a string
        syscall                             #call the "OS"

        move    $a0,$t4                     # $t4 contains the current value of n
        li  $v0,1                           #system call, type 1, print an integer $a0
        syscall                             #call the "OS"

        la $a0,msg2                         # $a0:=address of "msg2"
        li $v0,4                            #system call, type 4, print a string
        syscall                             #call the "OS"

        move    $a0,$t0                     # $a0 :=$t0, which is F(n)
        li  $v0,1                           #system call, type 1, print an integer $a0
        syscall                             #call the "OS"


        **sw $s0, 4($t7)**





        la  $a0,n1                          # $a0 := address of "n1"
        li  $v0,4                           #system call, type 4, print a string
        syscall                             #call the "OS"




        addi    $t4,1                       # $t4 := $t4 + 1; increment n
        move    $t2,$t1                     # $t2 := $t1; old F(n-2) because old F(n-1)
        move    $t1,$t0                     # $t1 := $t0; old F(n-2) because old F(n)



        beq     $t5,$t4,Exit            #Conditional Check | exit







        j       loop                        # branch unconditionally to loop ($t3 != 0)

Exit:   
        la $a0,n1                           # $a0 := address of message 1
        li $v0,4                            #system call, type 4, print a string
        syscall                             #call the "OS"

        #la $t7,array
        #li $v0,1
        #sw $s0, 4($t7)
        #syscall


        li      $v0,10                      #system call, type 10, standard exit
        syscall                             #call the "OS"

Printl: 
        addi $t4,1
        move $t2,$t1
        move$t1,$t0
        j loop
4

1 に答える 1

6

まだここにいるかどうかわかりません。:) しかし、もしあなたが 2 学期を過ぎた後もたまたま MIPS をやっているのなら、ここに役立つことがあります。

sw $s0, 4($t7)$s0 の内容を ($t7 + 4) が指すアドレスに書き込むことは既に述べました。$t7 の値は変更されないため、$s0 の内容を同じアドレスに何度も書き続けることになります。

$s0 の内容を から始まる連続した単語に格納したい場合はarray、ポインタを初期化し、それでやりたいことをしてから、それをインクリメントする必要があります。

la $t7,array
loop:
# do something to set $s0
sw $s0, 0($t7)
# do something to break out of loop if condition is met
addi $t7, 4
j loop

array20バイトと定義したことを忘れないでください。これは5 ワードです。

于 2013-10-17T19:37:06.190 に答える