<< Previous | Next >>

LD HL,(ps+d)     Load     Rabbit 4000 Instruction
Opcode
Instruction
Clocks
Operation
-- LD HL,(ps+d) 9(2,2,1,2,2) L = (ps + d)
H = (ps + d + 1)

85 d

LD HL,(PW+d)

9(2,2,1,2,2)

L = (PW + d)
H = (PW + d + 1)

95 d

LD HL,(PX+d)

9(2,2,1,2,2)

L = (PX + d)
H = (PX + d + 1)

A5 d

LD HL,(PY+d)

9(2,2,1,2,2)

L = (PY + d)
H = (PY + d + 1)

B5 d

LD HL,(PZ+d)

9(2,2,1,2,2)

L = (PZ + d)
H = (PZ + d + 1)


Flags ALTD IOI/IOE
S
Z
L/V
C
F
R
SP
S
D
-
-
-
-
·

Description

Loads HL with the data whose address is treated either as a logical address that will be passed through the MMU for translation into a physical address or as a physical address that does not need MMU translation.

If ps is 0xFFFFxxxx, i.e., the upper 16 bits are all ones, it represents a logical address. This is called a "long logical" address. Otherwise, it is a physical address with the low 20 bits or 24 bits being significant (depending on the memory available).

The address is computed as the sum of ps and the 8-bit signed displacement d.


<< Previous | Next >>