0

我正在研究 MIPS 汇编程序。我是新手,遇到了一些麻烦。

如何将 .asciiz 字符串中的数字转换为数字计数器部分。

例如:“1”-> 49

4

1 回答 1

0

假设您使用类似http://sourceforge.net/projects/spimsimulator/的模拟器:

.data
input:    .asciiz "1234"

.text
main:   
    la $t0, input         # load address of input
loop:
    lb $a0, ($t0)         # load one byte
    beq $a0, $0, exit     # exit if null-byte
    li $v0, 1             # print integer system call
    syscall             
    addi $t0, $t0, 1      # increment address
    j loop

exit:   
    jr $ra

输出:49505152

于 2011-01-11T23:54:28.120 回答