beautypg.com

NEC 78K/0 Series User Manual

Page 55

background image

55

CHAPTER 5 EXPLANATION OF INSTRUCTIONS

User's Manual U12326EJ4V0UM

Add

ADD

Byte Data Addition

[Instruction format]

ADD dst, src

[Operation]

dst, CY

dst + src

[Operand]

Mnemonic

Operand(dst,src)

Mnemonic

Operand(dst,src)

ADD

A, #byte

ADD

A, !addr16

saddr, #byte

A, [HL]

A, r

Note

A, [HL+byte]

r, A

A, [HL+B]

A, saddr

A, [HL+C]

Note Except r = A

[Flag]

Z

AC

CY

Ч

Ч

Ч

[Description]

The destination operand (dst) specified by the 1st operand is added to the source operand (src) specified

by the 2nd operand and the result is stored in the CY flag and the destination operand (dst).

If the addition result shows that dst is 0, the Z flag is set (1). In all other cases, the Z flag is cleared (0).

If the addition generates a carry out of bit 7, the CY flag is set (1). In all other cases, the CY flag is cleared

(0).

If the addition generates a carry for bit 4 out of bit 3, the AC flag is set (1). In all other cases, the AC flag

is cleared (0).

[Description example]

ADD CR10, #56H; 56H is added to the CR10 register and the result is stored in the CR10 register.