MIPS打印整数,不使用任何伪指令

时间:2015-05-22 01:42:48

标签: assembly mips

这就是我做的事情

num1:.word 1
num2:.word 2
.globl main
.text
main:
lui $t0,0x1001
addi $v0,$0,1  #set commend to print 
addi $s2,$0,5 # add 5 to $s2
sw $s2,4($t0) # store the val in word 2
addi $a0,$t0,4 # add 4 to t0 to start the second word 
syscall # print int 

我希望s2的值是打印的,但是我得到了268500996.此外,如果我想打印单词1和单词2如何在每行输出。

1 个答案:

答案 0 :(得分:0)

syscall 1 expects $a0 to contain the value to print,没有要打印的值的地址。所以而不是:

sw $s2,4($t0) # store the val in word 2
addi $a0,$t0,4 # add 4 to t0 to start the second word 

你应该这样做:

or $a0, $s2, $0  # $a0 = $s2

要打印换行符,您将打印字符13(回车符)和10(换行符)。您可以使用syscall 4(print_string)或两次调用syscall 11(print_character)来执行此操作。