I know la
in MIPS breaks down to lui
and ori
but what are the arguments for those instructions?
I looked at this question here MIPS Pseudo istructions, replacements but does the resulting lui
always use 4097?
Consider the following:
.data
_a: .space 4
.text
main: la $s0,_a
Does that get translated to this?
lui $at,4097
ori $s0,$at,0
Thank you!