I've defined a byte array using
.data
letters : .byte 0:26
And i've got some questions : 1 ) Is the first cell in the array available for use, or its employed for other purpose? 2 ) How can I load the 6 ( for example ) cell of the array ?
I've thought about using :
la $t0, letters # load the array address to $t0
addi $t0, $t0 , 6 # update $t0 in order to get the 6th cell
lb $t1, $t0 # load byte to $t1
Is this method valid or should I do it in other way?
Thanks in advance