

Instruction Purpose Example
lwz dest, si16(pointer) Will recive the blocks of memory inside the address from pointer+si16, as a word, and store the result in dest lwz %r5, 0x148(%r31) ; C = r5 = *(int*)(r31 + 0x14
;
stw source, si16(pointer) will send the blocks of memory from the source to the address from pointer+si16, as a word stw %r5 0x14C(%r31) ; C = *(int*)(r31 + 0x14C) = r5;
Copyright © 2026, NextGenUpdate.
All Rights Reserved.