所以我想问一下会发生什么,如果我做这样的代码:
.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:
此代码将比较一些地址或它的作用?