Encoding:

RR

11101

rx

ry

AND

01100

5

3

3

5

Format:

AND rx, ry

MIPS16e

AND

Purpose:

AND

To do a bitwise logical AND.

Description:

GPR[rx] = GPR[rx] AND GPR[ry]

The contents of GPR ry are combined with the contents of GPR rx in a bitwise logical AND operation. The result is placed in GPR rx.

Restrictions:

None

Operation:

GPR[Xlat(rx)] = GPR[Xlat(rx)] and GPR[Xlat(ry)]

Exceptions:

None