簡體   English   中英

MIPS匯編程序,用於在輸入整數后計算矩陣的軌跡

[英]MIPS Assembly program to calculate the trace of a matrix after taking an integer input

以下是我的MIPS匯編代碼,由於某些原因該代碼拒絕工作。 有人請救救我,我被困了三個星期!!! 我應該讀一個int n,將其平方,然后將n(squared)值讀入一個矩陣,然后計算該矩陣的跡線。 我讀了一個堆棧,然后從堆棧中讀取,但是沿線的某個地方,我必須有一個我無法識別的簡單邏輯錯誤。 提前致謝:

.data                           #string variable declarations
get_int: .asciiz   "Please enter an int value n: "  #prompts user to enter a number
newline: .asciiz   "\n" 
.text 

.globl main 

main:   

addi $sp, $sp, -12                      #create a stack (stack frame..)
sw   $ra, 0($sp)                        #storage for stack elements
sw   $s0, 4($sp)      
sw   $s1, 8($sp)      
sw   $s2, 12($sp)               

li $v0, 5                       #Read input 
syscall
move $s0, $v0                       #$s0 = $v0 

mult $s0 $s0                            #square the entered int
mflo $t2
li $t0, $t2       #t0 receives the squared value from $t2


#adding stuff to the stack

li $t1, 0                       #t1 is our counter (i) 

stackloop:
beq $t1, $t0, endstackloop                  #exit loop when t1== $t0


li $v0, 5                       #Read input 
syscall
move $t5, $v0                       #$t5 = $v0 

addi $sp, $sp, -4
sw $t5, 0($sp)

addi $t1, $t1, 1                    #add 1 to t1
j stackloop                         #jump back to the top of loop

stackpop:

lw $t3, 0($sp)      #t3 = 1st value from stack 
add $s1, $s1, $t3   #adding that 1st value to sum
addi $sp, $sp, 4    #moving to the next stack element
sub $t1, $t1, 1     #decrementing counter by 1
add $t4, $t4, $0    #setting comparison value to 0

matrixcondition:
beq $t1, $0, output
lw $t3, 0($sp)
sub $t1, $t1, 1         #decrementing counter by 1
beq $s0, $t4, matrixtrace   #jump to matrixtrace when equal 
add $t4, $t4, 1         #add 1 to t4
j matrixcondition

matrixtrace:
add $s1, $s1, $t3   #adding that next value to sum
add $t4, $0, $0     #setting comparison value to 0
j matrixcondition

output:
li $v0, 4
syscall
j progterminate

progterminate:

lw $ra, 0($sp)                      #restoring the stack pointer

addi $sp, $sp, 8

jr $ra                          #return

這些是我發現的錯誤:

  1. 這個

     li $t0, $t2 #t0 receives the squared value from $t2 

    變成

     move $t0, $t2 #t0 receives the squared value from $t2 
  2. endstackloop不存在。

  3. 這個

     add $t4, $t4, $0 #setting comparison value to 0 

    變成

     li $t4, 0 #setting comparison value to 0 

如果您提供有關無法解決問題的更多信息,我們將為您提供更好的幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM