我的MIPS代码有问题...我会检查键盘传递的字符串中没有要比较的字符。我有堆栈中的字符串(堆栈-255位置)和.data部分中的数组来存储事件。基本的想法是我从堆栈中逐个加载一个带循环的字母(lb $ t1,($ a0)t1 =字母的ascii代码 - a0 =在函数处传递的堆栈),减去读取的字母从堆栈中获取97(97 = a)并获取数组的索引并使用另一个循环,计算出现次数并将其保存在之前计算的索引之下。显然,数组有104个位置(26个字母* 4,因为我会保存出现次数)。问题是当我找到我的数组位置的索引并且我将保存在位置内的sw $ - ,myArray($ - )Mars的出现时给我这个错误: 0x0040007c处的运行时异常:存储地址未在字边界0x10010087上对齐 我试图在.data部分添加.align,但我找不到解决方案,也许我错了一些东西......有什么帮助吗?
这是我的代码:
analizza_stringa: (function)
while_string:
# load a byte from the stack
lb $t0, ($a0)
#check end string
beq $t0, $zero, end
#check a line feed
beq $t0, 10, end
#array index
subi $t3, $t0, 97
#Multiply by 4 (I would save number)
mul $t4, $t3, 4
while_occorrenza:
#like before
beq $t1, 10, continue
#load a letter like before
lb $t1,($a0)
#Check the occurrences
bne $t1, $t0, continue2
#add 1 at the occurrences
addi $t5, $t5, 1
continue2:
#add 1 for the pointer at the string
addi $a0, $a0, 1
#Repeat
j while_occorrenza
continue:
#Save the number under the index calculated before
sw $t5, myArray($t4)
#counter=0 for another loop
li $t3, 0
#next character
addi $a0, $a0, 1
# repeat the first loop
j while_string
end:
jr $ra
答案 0 :(得分:0)
如果要访问内存中的单词,则地址必须是字对齐的(4的倍数)。
假设$t4
包含4的倍数,这似乎意味着myArray
不是字对齐的。要解决此问题,您需要在数据部分.align 2
之前的行上添加myArray
。