Loads a byte of data from a specified location in memory into a general-purpose register and sets the remaining 24 bits to 0.
lbz | RT,D(RA) |
The lbz instruction loads a byte in storage addressed by the effective address (EA) into bits 24-31 of the target general-purpose register (GPR) RT and sets bits 0-23 of GPR RT to 0.
If RA is not 0, the EA is the sum of the contents of GPR RA and D, a 16-bit, signed two's complement integer sign-extended to 32 bits. If RA is 0, then the EA is D.
The lbz instruction has one syntax form and does not affect the Fixed-Point Exception Register or Condition Register Field 0.
The following code loads a byte of data from a specified location in memory into GPR 6 and sets the remaining 24 bits to 0:
.csect data[rw] storage: .byte 'a # Assume GPR 5 contains the address of csect data[rw]. .csect text[pr] lbz 6,storage(5) # GPR 6 now contains 0x0000 0061.
Fixed-Point Load and Store Instructions.