Encoding:

SPECIAL

000000

rs

rt

rd

0

00000

AND

100100

6

5

5

5

5

6

Format:

AND rd, rs, rt

MIPS32

and

Purpose:

and

To do a bitwise logical AND.

Description:

GPR[rd] = GPR[rs] and GPR[rt]

The contents of GPR rs are combined with the contents of GPR rt in a bitwise logical AND operation. The result is placed into GPR rd.

Restrictions:

None

Operation:

GPR[rd] = GPR[rs] and GPR[rt]

Exceptions:

None