标签: assembly mips
我在代码中为整数提供了4个空格,我想将(4)添加到指针以指向下一个int 例如:
.date int: .space 4 .text main: addi $t2,$t2,4 addi $t3,$t3,2 syscall sw $t2,$int syscall #now I want to add 4 to int for next integer that it is in $t3
我该怎么办? 感谢