背景
我目前正致力于小型MIPS计划的家庭作业,并在此过程中学习一些语言。我对此非常陌生,因此即使是我正在执行的操作的最基本方面,我也非常不确定自己。此外,我的导师坚持不在我们的作业中使用伪代码,这导致在理解如何完成某些任务时遇到很多困难。
作业
我的任务问题是这样的:假设您想要迭代地(在循环中)计算前20个Biggie数字B(i) = 2i + 17i
并将它们按顺序存储在数组B
中,其基地址在MIPS内存中存储在寄存器$s0
中。请编写MIPS代码(完全注释)以计算B(i), 1 < i < 20
。
我的解决方案
我现在有什么:
.globl main
main:
.data
BiggieArray:
.space 80 #4 bytes per word * 20 biggie numbers = 80 bytes reserved
.text
addi $s1, $zero, 1 #$s1 tracks i, initialize i with value of 1
addi $s2, $zero, 21 #$s2 holds 21, for use in comparing with the value of i
addi $s3, $zero, 2 #$s3 holds the value for the first mult
addi $s4, $zero, 17 #$s4 holds the value for the second mult
STARTLOOP:
beq $s1, $s2, ENDLOOP #compares i ($s1) with $s2. If they are equal, i > 20, so branch to the end of the loop.
add $t0, $s1, $s1 #find 2i
add $t0, $t0, $t0 #find 4i, use as offset for BiggieArray
addi $t0, $t0, -4 #adjusts to start from index 0 instead of index 1
mult $s1, $s3 #Calculates 2i
mflo $s5 #$s5 holds 2i
mult $s1, $s4 #Calculates 17i
mflo $s6 #$s6 holds 17i
add $s7, $s5, $s6 #$s7 holds 2i+17i
add $t1, $s0, $t0 #$t1 holds the current address of BiggieArray[i]
sw $t1, 0($s7) #stores the value 2i+17i into RAM ?????
addi $s1, $s1, 1 #increment i
j STARTLOOP
ENDLOOP:
我的问题
我意识到我目前没有$s0
初始化任何东西,但这不是给我带来问题的东西。我感到困惑的是如何将2i+17i
的值存回BiggieArray
。任何有关sw如何工作的帮助或非常简单的解释都将非常赞赏。
答案 0 :(得分:2)
在您的示例中,您将寄存器反转。它应该是:
sw $s7, 0($t1) # since s7 holds the value you want to store, and t1 holds the mem address where you want to store it