lwzci

Load Word and Zero Caching Inhibited

lwzci RT, RA, RB

Loads a word bypassing the cache.

Encoding

Binary Layout
31
0:5
RT
6:10
RA
11:15
RB
16:20
855
21:30
/
31
 
Format X-form
Opcode 0x7C0006AB
Extension Base

Operands

  • RT
    Target
  • RA
    Base
  • RB
    Index

Example

lwzci r3, r4, r5

Related

More in Base

Reference

Description

Loads an unsigned word (32 bits) from memory at address (RA + RB) with caching inhibited, zero-extending the result to 64 bits in RT. This instruction bypasses the cache and is commonly used for memory-mapped I/O device access. No condition registers are affected.

Operation

EA ← (RA) + (RB); RT ← 0x00000000ZZZZZZZZ where ZZZZZZZZ = [EA]