![Sino Wealth SH79F3283 Manual Download Page 128](http://html1.mh-extra.com/html/sino-wealth/sh79f3283/sh79f3283_manual_1283063128.webp)
SH79F3283
128
LOGIC OPERATIONS
Opcode
Description
Code
Byte
Cycle
ANL A, Rn
AND register to accumulator
0x58-0x5F
1
1
ANL A, direct
AND direct byte to accumulator
0x55
2
2
ANL A, @Ri
AND indirect RAM to accumulator
0x56-0x57
1
2
ANL A, #data
AND immediate data to accumulator
0x54
2
2
ANL direct, A
AND accumulator to direct byte
0x52
2
3
ANL direct, #data
AND immediate data to direct byte
0x53
3
3
ORL A, Rn
OR register to accumulator
0x48-0x4F
1
1
ORL A, direct
OR direct byte to accumulator
0x45
2
2
ORL A, @Ri
OR indirect RAM to accumulator
0x46-0x47
1
2
ORL A, #data
OR immediate data to accumulator
0x44
2
2
ORL direct, A
OR accumulator to direct byte
0x42
2
3
ORL direct, #data
OR immediate data to direct byte
0x43
3
3
XRL A, Rn
Exclusive OR register to accumulator
0x68-0x6F
1
1
XRL A, direct
Exclusive OR direct byte to accumulator
0x65
2
2
XRL A, @Ri
Exclusive OR indirect RAM to accumulator
0x66-0x67
1
2
XRL A, #data
Exclusive OR immediate data to accumulator
0x64
2
2
XRL direct, A
Exclusive OR accumulator to direct byte
0x62
2
3
XRL direct, #data
Exclusive OR immediate data to direct byte
0x63
3
3
CLR A
Clear accumulator
0xE4
1
1
CPL A
Complement accumulator
0xF4
1
1
RL A
Rotate accumulator left
0x23
1
1
RLC A
Rotate accumulator left through carry
0x33
1
1
RR A
Rotate accumulator right
0x03
1
1
RRC A
Rotate accumulator right through carry
0x13
1
1
SWAP A
Swap nibbles within the accumulator
0xC4
1
4