Encoding:

RR

11101

rx

ry

XOR

01110

5

3

3

5

Format:

XOR rx, ry

MIPS16e

Exclusive OR

Purpose:

Exclusive OR

To do a bitwise logical Exclusive OR.

Description:

GPR[rx] = GPR[rx] XOR GPR[ry]

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

Restrictions:

None

Operation:

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

Exceptions:

None