Suppose you want to add a new pseudoinstruction to your assembler to operate on memory directly. The syntax of the instruction is:

maddi register immediate (ie  maddi $t2, 14)

It will add the given immediate to the value in memory that the register holds the address for. You may assume that the absolute value of the immediate is less than 215. Write out what the instruction to the right translates to in TAL.

maddi $s0, 0xbeef

조언좀 부탁 드립니다.