当我在MIPS(程序集)中比较两个字符串时会发生什么

时间:2015-05-22 10:20:24

标签: string assembly compare mips

所以我想问一下会发生什么,如果我做这样的代码:

.data
    $$tmp0: .asciiz "pies"
    $$tmp1: .asciiz "kot"
    a: .word 0:1

.text
    main:
    la $t1, $$tmp0
    la $t0, $$tmp1
    bne $t0, $t1, ELSE_END_IF_LABEL0
    li $t0, 2
    sw $t0, a
    j END_IF_LABEL0
    ELSE_END_IF_LABEL0:
    END_IF_LABEL0:

此代码将比较一些地址或它的作用?

0 个答案:

没有答案