TSK3000A Generic Instruction - SB

Frozen Content

Instruction:    Store Byte

Assembler Format
Example
Translates to...

sb rC, (rA)

sb $3, ($4)

sb rC, 0(rA)

sb rC, target

sb $3, Shifter

lui $at, @HI(target)
sb rC, @LO(target)($at)

sb rC, target(rA)

sb $3, Shifter($4)

lui $at, @HI(target)
addu $at, $at, rA
sb rC, @LO(target)($at)

Notes

With respect to the third format for this macro, if the source register is the GP register ($28) and the assembler runs with the -gp-relative option enabled, the format translates into the following single machine instruction:

sb rC, @GPREL(target)($gp)

You are reporting an issue with the following selected text and/or image within the active document: