.data
text1: .asciiz "ABCDE"
.text
main : li $t1,1
lb $t0,text1($t1)
j print
print : li $v0,4
move $a0,$t0
syscall
j ende
ende: li$v0 , 10
syscall
normaleweise sollte ich "B" bekommen , aber ich bekomme immer "(null)" , habe ich was falches gemacht ? Bitte helfen Sie mir
