Instruction Set Nomenclature
Status Register (SREG)
SREG: Status Register
C: Carry Flag
Z: Zero Flag
N: Negative Flag
V: Two’s complement overflow indicator S: N ⊕ V, For signed tests
H: Half Carry Flag
T: Transfer bit used by BLD and BST instructions I: Global Interrupt Enable/Disable Flag
Registers and Operands
Rd: Destination (and source) register in the Register File Rr: Source register in the Register File
R: Result after instruction is executed
K: Constant data
k: Constant address
b: Bit in the Register File or I/O Register (3-bit) s: Bit in the Status Register (3-bit)
X,Y,Z: Indirect Address Register
(X=R27:R26, Y=R29:R28 and Z=R31:R30) A: I/O location address
q: Displacement for direct addressing (6-bit)
8-bit
Instruction Set
Rev. 0856I–AVR–07/10
I/O Registers
RAMPX, RAMPY, RAMPZ
Registers concatenated with the X-, Y-, and Z-registers enabling indirect addressing of the whole data space on MCUs with more than 64K bytes data space, and constant data fetch on MCUs with more than 64K bytes program space.
RAMPD
Register concatenated with the Z-register enabling direct addressing of the whole data space on MCUs with more than 64K bytes data space.
EIND
Register concatenated with the Z-register enabling indirect jump and call to the whole program space on MCUs with more than 64K words (128K bytes) program space.
Stack
STACK: Stack for return address and pushed registers SP: Stack Pointer to STACK
Flags
⇔: Flag affected by instruction
0: Flag cleared by instruction
1: Flag set by instruction
-: Flag not affected by instruction
2 AVR Instruction Set
0856I–AVR–07/10
The Program and Data Addressing Modes
The AVR Enhanced RISC microcontroller supports powerful and efficient addressing modes for access to the Program memory (Flash) and Data memory (SRAM, Register file, I/O Memory, and Extended I/O Memory). This section describes the various addressing modes supported by the AVR architecture. In the following figures, OP means the operation code part of the instruction word. To simplify, not all figures show the exact location of the addressing bits. To generalize, the abstract terms RAMEND and FLASHEND have been used to represent the highest location in data and program space, respectively.
Note: Not all addressing modes are present in all devices. Refer to the device spesific instruction summary.
Register Direct, Single Register Rd Figure 1. Direct Single Register Addressing
AVR Instruction Set
The operand is contained in register d (Rd).
Register Direct, Two Registers Rd and Rr
Figure 2. Direct Register Addressing, Two Registers
Operands are contained in register r (Rr) and d (Rd). The result is stored in register d (Rd).
0856I–AVR–07/10
3
I/O Direct
Figure 3. I/O Direct Addressing
Operand address is contained in 6 bits of the instruction word. n is the destination or source register address.
Note: Some complex AVR Microcontrollers have more peripheral units than can be supported within the 64 locations reserved in the opcode for I/O direct addressing. The extended I/O memory from address 64 to 255 can only be reached by data addressing, not I/O addressing.
Data Direct
Figure 4. Direct Data Addressing
Data Space
31 20 19 16
15 0
0x0000
OP
Data Address
Rr/Rd
RAMEND
A 16-bit Data Address is contained in the 16 LSBs of a two-word instruction. Rd/Rr specify the destination or source register.
4 AVR Instruction Set
0856I–AVR–07/10
Y OR Z – REGISTER
OP
Rr/Rd
q
Data Space
0x0000
15 0
X, Y OR Z – REGISTER
RAMEND
AVR Instruction Set
Data Indirect with Displacement
Figure 5. Data Indirect with Displacement
15 0
15 10 65 0
Data Space
0x0000
Operand address is the result of the Y- or Z-register contents added to the address contained in 6 bits of the instruction word. Rd/Rr specify the destination or source register.
Data Indirect
Figure 6. Data Indirect Addressing
Operand address is the contents of the X-, Y-, or the Z-register. In AVR devices without SRAM, Data Indirect Addressing is called Register Indirect Addressing. Register Indirect Addressing is a subset of Data Indirect Addressing since the data space form 0 to 31 is the Register File.
RAMEND
0856I–AVR–07/10
5
Data Indirect with Pre-decrement
Figure 7. Data Indirect Addressing with Pre-decrement
15 0
X, Y OR Z – REGISTER
-1
Data Space
0x0000
RAMEND
The X,- Y-, or the Z-register is decremented before the operation. Operand address is the decremented contents of the X-, Y-, or the Z-register.
Data Indirect with Post-increment
Figure 8. Data Indirect Addressing with Post-increment
15 0
Data Space
0x0000
X, Y OR Z – REGISTER
1
RAMEND
The X-, Y-, or the Z-register is incremented after the operation. Operand address is the content of the X-, Y-, or the Z-regis- ter prior to incrementing.
6 AVR Instruction Set
0856I–AVR–07/10
0x0000
LSB
FLASHEND
0x0000
LSB
1
FLASHEND
AVR Instruction Set Program Memory Constant Addressing using the LPM, ELPM, and SPM Instructions
Figure 9. Program Memory Constant Addressing
Constant byte address is specified by the Z-register contents. The 15 MSBs select word address. For LPM, the LSB selects low byte if cleared (LSB = 0) or high byte if set (LSB = 1). For SPM, the LSB should be cleared. If ELPM is used, the RAMPZ Register is used to extend the Z-register.
Program Memory with Post-increment using the LPM Z+ and ELPM Z+ Instruction Figure 10. Program Memory Addressing with Post-increment
Constant byte address is specified by the Z-register contents. The 15 MSBs select word address. The LSB selects low byte if cleared (LSB = 0) or high byte if set (LSB = 1). If ELPM Z+ is used, the RAMPZ Register is used to extend the Z-register.
0856I–AVR–07/10
7
Direct Program Addressing, JMP and CALL Figure 11. Direct Program Memory Addressing
31 16
0 0
0x0000
15 21
OP
16 LSB
6 MSB
PC
FLASHEND
Program execution continues at the address immediate in the instruction word.
Indirect Program Addressing, IJMP and ICALL Figure 12. Indirect Program Memory Addressing
0x0000
15
PC
0
FLASHEND
Program execution continues at address contained by the Z-register (i.e., the PC is loaded with the contents of the Z- register).
8 AVR Instruction Set
0856I–AVR–07/10
1
Relative Program Addressing, RJMP and RCALL Figure 13. Relative Program Memory Addressing
AVR Instruction Set
0x0000
Program execution continues at address PC + k + 1. The relative address k is from -2048 to 2047.
FLASHEND
0856I–AVR–07/10
9
Conditional Branch Summary
Test
Boolean
Mnemonic
Complementary
Boolean
Mnemonic
Comment
Rd > Rr
Z•(N ⊕ V) = 0
BRLT(1)
Rd ≤ Rr
Z+(N ⊕ V) = 1
BRGE*
Signed
Rd Rr
(N ⊕ V) = 0
BRGE
Rd < Rr
(N ⊕ V) = 1
BRLT
Signed
Rd = Rr
Z=1
BREQ
Rd ≠ Rr
Z=0
BRNE
Signed
Rd ≤ Rr
Z+(N ⊕ V) = 1
BRGE(1)
Rd > Rr
Z•(N ⊕ V) = 0
BRLT*
Signed
Rd < Rr
(N ⊕ V) = 1
BRLT
Rd ≥ Rr
(N ⊕ V) = 0
BRGE
Signed
Rd > Rr
C+Z=0
BRLO(1)
Rd ≤ Rr
C+Z=1
BRSH*
Unsigned
Rd Rr
C=0
BRSH/BRCC
Rd < Rr
C=1
BRLO/BRCS
Unsigned
Rd = Rr
Z=1
BREQ
Rd ≠ Rr
Z=0
BRNE
Unsigned
Rd ≤ Rr
C+Z=1
BRSH(1)
Rd > Rr
C+Z=0
BRLO*
Unsigned
Rd < Rr
C=1
BRLO/BRCS
Rd ≥ Rr
C=0
BRSH/BRCC
Unsigned
Carry
C=1
BRCS
No carry
C=0
BRCC
Simple
Negative
N=1
BRMI
Positive
N=0
BRPL
Simple
Overflow
V=1
BRVS
No overflow
V=0
BRVC
Simple
Zero
Z=1
BREQ
Not zero
Z=0
BRNE
Simple
Note: 1. Interchange Rd and Rr in the operation before the test, i.e., CP Rd,Rr → CP Rr,Rd
10 AVR Instruction Set
0856I–AVR–07/10
Mnemonics
Operands
Description
Operation
Flags
#Clocks
#Clocks XMEGA
Arithmetic and Logic Instructions
ADD
Rd, Rr
Add without Carry
Rd ← Rd + Rr
Z,C,N,V,S,H
1
ADC
Rd, Rr
Add with Carry
Rd ← Rd + Rr + C
Z,C,N,V,S,H
1
ADIW(1)
Rd, K
Add Immediate to Word
Rd ← Rd + 1:Rd + K
Z,C,N,V,S
2
SUB
Rd, Rr
Subtract without Carry
Rd ← Rd - Rr
Z,C,N,V,S,H
1
SUBI
Rd, K
Subtract Immediate
Rd ← Rd - K
Z,C,N,V,S,H
1
SBC
Rd, Rr
Subtract with Carry
Rd ← Rd - Rr - C
Z,C,N,V,S,H
1
SBCI
Rd, K
Subtract Immediate with Carry
Rd ← Rd - K - C
Z,C,N,V,S,H
1
SBIW(1)
Rd, K
Subtract Immediate from Word
Rd + 1:Rd ← Rd + 1:Rd - K
Z,C,N,V,S
2
AND
Rd, Rr
Logical AND
Rd ← Rd • Rr
Z,N,V,S
1
ANDI
Rd, K
Logical AND with Immediate
Rd ← Rd • K
Z,N,V,S
1
OR
Rd, Rr
Logical OR
Rd ← Rd v Rr
Z,N,V,S
1
ORI
Rd, K
Logical OR with Immediate
Rd ← Rd v K
Z,N,V,S
1
EOR
Rd, Rr
Exclusive OR
Rd ← Rd ⊕ Rr
Z,N,V,S
1
COM
Rd
One’s Complement
Rd ← $FF - Rd
Z,C,N,V,S
1
NEG
Rd
Two’s Complement
Rd ← $00 - Rd
Z,C,N,V,S,H
1
SBR
Rd,K
Set Bit(s) in Register
Rd ← Rd v K
Z,N,V,S
1
CBR
Rd,K
Clear Bit(s) in Register
Rd ← Rd • ($FFh - K)
Z,N,V,S
1
INC
Rd
Increment
Rd ← Rd + 1
Z,N,V,S
1
DEC
Rd
Decrement
Rd ← Rd - 1
Z,N,V,S
1
TST
Rd
Test for Zero or Minus
Rd ← Rd • Rd
Z,N,V,S
1
CLR
Rd
Clear Register
Rd ← Rd ⊕ Rd
Z,N,V,S
1
SER
Rd
Set Register
Rd ← $FF
None
1
MUL(1)
Rd,Rr
Multiply Unsigned
R1:R0 ← Rd x Rr (UU)
Z,C
2
MULS(1)
Rd,Rr
Multiply Signed
R1:R0 ← Rd x Rr (SS)
Z,C
2
MULSU(1)
Rd,Rr
Multiply Signed with Unsigned
R1:R0 ← Rd x Rr (SU)
Z,C
2
FMUL(1)
Rd,Rr
Fractional Multiply Unsigned
R1:R0 ← Rd x Rr<<1 (UU)
Z,C
2
FMULS(1)
Rd,Rr
Fractional Multiply Signed
R1:R0 ← Rd x Rr<<1 (SS)
Z,C
2
FMULSU(1)
Rd,Rr
Fractional Multiply Signed with Unsigned
R1:R0 ← Rd x Rr<<1 (SU)
Z,C
2
DES
K
Data Encryption
if (H = 0) then R15:R0 ← Encrypt(R15:R0, K) else if (H = 1) then R15:R0 ← Decrypt(R15:R0, K)
1/2
Branch Instructions
RJMP
k
Relative Jump
PC ← PC + k + 1
None
2
IJMP(1)
Indirect Jump to (Z)
PC(15:0) ← Z, PC(21:16) ← 0
None
2
EIJMP(1)
Extended Indirect Jump to (Z)
PC(15:0) ← Z, PC(21:16) ← EIND
None
2
JMP(1)
k
Jump
PC ← k
None
3
Complete Instruction Set Summary
Instruction Set Summary
AVR Instruction Set
0856I–AVR–07/10
11
Mnemonics
Operands
Description
Operation
Flags
#Clocks
#Clocks XMEGA
RCALL
k
Relative Call Subroutine
PC ← PC + k + 1
None
3 / 4(3)(5)
2 / 3(3)
ICALL(1)
Indirect Call to (Z)
PC(15:0) ← Z, PC(21:16) ← 0
None
3 / 4(3)
2 / 3(3)
EICALL(1)
Extended Indirect Call to (Z)
PC(15:0) ← Z, PC(21:16) ← EIND
None
4 (3)
3 (3)
CALL(1)
k
call Subroutine
PC ← k
None
4 / 5(3)
3 / 4(3)
RET
Subroutine Return
PC ← STACK
None
4 / 5(3)
RETI
Interrupt Return
PC ← STACK
I
4 / 5(3)
CPSE
Rd,Rr
Compare, Skip if Equal
if (Rd = Rr) PC ← PC + 2 or 3
None
1/2/3
CP
Rd,Rr
Compare
Rd - Rr
Z,C,N,V,S,H
1
CPC
Rd,Rr
Compare with Carry
Rd - Rr - C
Z,C,N,V,S,H
1
CPI
Rd,K
Compare with Immediate
Rd - K
Z,C,N,V,S,H
1
SBRC
Rr, b
Skip if Bit in Register Cleared
if (Rr(b) = 0) PC ← PC + 2 or 3
None
1/2/3
SBRS
Rr, b
Skip if Bit in Register Set
if (Rr(b) = 1) PC ← PC + 2 or 3
None
1/2/3
SBIC
A, b
Skip if Bit in I/O Register Cleared
if (I/O(A,b) = 0) PC ← PC + 2 or 3
None
1/2/3
2/3/4
SBIS
A, b
Skip if Bit in I/O Register Set
If (I/O(A,b) =1) PC ← PC + 2 or 3
None
1/2/3
2/3/4
BRBS
s, k
Branch if Status Flag Set
if (SREG(s) = 1) then PC ← PC + k + 1
None
1/2
BRBC
s, k
Branch if Status Flag Cleared
if (SREG(s) = 0) then PC ← PC + k + 1
None
1/2
BREQ
k
Branch if Equal
if (Z = 1) then PC ← PC + k + 1
None
1/2
BRNE
k
Branch if Not Equal
if (Z = 0) then PC ← PC + k + 1
None
1/2
BRCS
k
Branch if Carry Set
if (C = 1) then PC ← PC + k + 1
None
1/2
BRCC
k
Branch if Carry Cleared
if (C = 0) then PC ← PC + k + 1
None
1/2
BRSH
k
Branch if Same or Higher
if (C = 0) then PC ← PC + k + 1
None
1/2
BRLO
k
Branch if Lower
if (C = 1) then PC ← PC + k + 1
None
1/2
BRMI
k
Branch if Minus
if (N = 1) then PC ← PC + k + 1
None
1/2
BRPL
k
Branch if Plus
if (N = 0) then PC ← PC + k + 1
None
1/2
BRGE
k
Branch if Greater or Equal, Signed
if (N ⊕ V= 0) then PC ← PC + k + 1
None
1/2
BRLT
k
Branch if Less Than, Signed
if (N ⊕ V= 1) then PC ← PC + k + 1
None
1/2
BRHS
k
Branch if Half Carry Flag Set
if (H = 1) then PC ← PC + k + 1
None
1/2
BRHC
k
Branch if Half Carry Flag Cleared
if (H = 0) then PC ← PC + k + 1
None
1/2
BRTS
k
Branch if T Flag Set
if (T = 1) then PC ← PC + k + 1
None
1/2
BRTC
k
Branch if T Flag Cleared
if (T = 0) then PC ← PC + k + 1
None
1/2
BRVS
k
Branch if Overflow Flag is Set
if (V = 1) then PC ← PC + k + 1
None
1/2
BRVC
k
Branch if Overflow Flag is Cleared
if (V = 0) then PC ← PC + k + 1
None
1/2
BRIE
k
Branch if Interrupt Enabled
if (I = 1) then PC ← PC + k + 1
None
1/2
BRID
k
Branch if Interrupt Disabled
if (I = 0) then PC ← PC + k + 1
None
1/2
Data Transfer Instructions
MOV
Rd, Rr
Copy Register
Rd ← Rr
None
1
MOVW(1)
Rd, Rr
Copy Register Pair
Rd+1:Rd ← Rr+1:Rr
None
1
LDI
Rd, K
Load Immediate
Rd ← K
None
1
LDS(1)
Rd, k
Load Direct from data space
Rd ← (k)
None
1(5)/2(3)
2(3)(4)
LD(2)
Rd, X
Load Indirect
Rd ← (X)
None
1(5)2(3)
1(3)(4)
12 AVR Instruction Set
0856I–AVR–07/10
Mnemonics
Operands
Description
Operation
Flags
#Clocks
#Clocks XMEGA
LD(2)
Rd, X+
Load Indirect and Post-Increment
Rd ← (X) X←X+1
None
2(3)
1(3)(4)
LD(2)
Rd, -X
Load Indirect and Pre-Decrement
X ← X - 1, ← X - 1 Rd ← (X) ← (X)
None
2(3)/3(5)
2(3)(4)
LD(2)
Rd, Y
Load Indirect
Rd ← (Y) ← (Y)
None
1(5)/2(3)
1(3)(4)
LD(2)
Rd, Y+
Load Indirect and Post-Increment
Rd ← (Y) Y←Y+1
None
2(3)
1(3)(4)
LD(2)
Rd, -Y
Load Indirect and Pre-Decrement
Y←Y-1 Rd ← (Y)
None
2(3)/3(5)
2(3)(4)
LDD(1)
Rd, Y+q
Load Indirect with Displacement
Rd ← (Y + q)
None
2(3)
2(3)(4)
LD(2)
Rd, Z
Load Indirect
Rd ← (Z)
None
1(5)/2(3)
1(3)(4)
LD(2)
Rd, Z+
Load Indirect and Post-Increment
Rd ← (Z), Z ← Z+1
None
2(3)
1(3)(4)
LD(2)
Rd, -Z
Load Indirect and Pre-Decrement
Z ← Z-1, Rd ← (Z)
None
2(3)/3(5)
2(3)(4)
LDD(1)
Rd, Z+q
Load Indirect with Displacement
Rd ← (Z + q)
None
2(3)
2(3)(4)
STS(1)
k, Rr
Store Direct to Data Space
(k) ← Rd
None
1(5)/2(3)
2(3)
ST(2)
X, Rr
Store Indirect
(X) ← Rr
None
1(5)/2(3)
1(3)
ST(2)
X+, Rr
Store Indirect and Post-Increment
(X) ← Rr, X←X+1
None
1(5)/2(3)
1(3)
ST(2)
-X, Rr
Store Indirect and Pre-Decrement
X ← X-1, (X) ← Rr
None
2(3)
2(3)
ST(2)
Y, Rr
Store Indirect
(Y) ← Rr
None
1(5)/2(3)
1(3)
ST(2)
Y+, Rr
Store Indirect and Post-Increment
(Y) ← Rr, Y←Y+1
None
1(5)/2(3)
1(3)
ST(2)
-Y, Rr
Store Indirect and Pre-Decrement
Y ← Y-1, (Y) ← Rr
None
2(3)
2(3)
STD(1)
Y+q, Rr
Store Indirect with Displacement
(Y + q) ← Rr
None
2(3)
2(3)
ST(2)
Z, Rr
Store Indirect
(Z) ← Rr
None
1(5)/2(3)
1(3)
ST(2)
Z+, Rr
Store Indirect and Post-Increment
(Z) ← Rr Z←Z+1
None
1(5)/2(3)
1(3)
ST(2)
-Z, Rr
Store Indirect and Pre-Decrement
Z←Z-1
None
2(3)
2(3)
STD(1)
Z+q,Rr
Store Indirect with Displacement
(Z + q) ← Rr
None
2(3)
2(3)
LPM(1)(2)
Load Program Memory
R0 ← (Z)
None
3
3
LPM(1)(2)
Rd, Z
Load Program Memory
Rd ← (Z)
None
3
3
LPM(1)(2)
Rd, Z+
Load Program Memory and Post- Increment
Rd ← (Z), Z←Z+1
None
3
3
ELPM(1)
Extended Load Program Memory
R0 ← (RAMPZ:Z)
None
3
ELPM(1)
Rd, Z
Extended Load Program Memory
Rd ← (RAMPZ:Z)
None
3
ELPM(1)
Rd, Z+
Extended Load Program Memory and Post-Increment
Rd ← (RAMPZ:Z), Z←Z+1
None
3
SPM(1)
Store Program Memory
(RAMPZ:Z) ← R1:R0
None
-
-
SPM(1)
Z+
Store Program Memory and Post- Increment by 2
(RAMPZ:Z) ← R1:R0, Z←Z+2
None
-
-
IN
Rd, A
In From I/O Location
Rd ← I/O(A)
None
1
OUT
A, Rr
Out To I/O Location
I/O(A) ← Rr
None
1
PUSH(1)
Rr
Push Register on Stack
STACK ← Rr
None
2
1(3)
POP(1)
Rd
Pop Register from Stack
Rd ← STACK
None
2
2(3)
AVR Instruction Set
0856I–AVR–07/10
13
Mnemonics
Operands
Description
Operation
Flags
#Clocks
#Clocks XMEGA
XCH
Z, Rd
Exchange
(Z) ← Rd, Rd ← (Z)
None
1
LAS
Z, Rd
Load and Set
(Z) ← Rd v (Z) Rd ← (Z)
None
1
LAC
Z, Rd
Load and Clear
(Z) ← ($FF – Rd) • (Z) Rd ← (Z)
None
1
LAT
Z, Rd
Load and Toggle
(Z) ← Rd ⊕ (Z) Rd ← (Z)
None
1
Bit and Bit-test Instructions
LSL
Rd
Logical Shift Left
Rd(n+1) ← Rd(0) ← C ←
Rd(n), 0, Rd(7)
Z,C,N,V,H
1
LSR
Rd
Logical Shift Right
Rd(n) ← Rd(7) ← C ←
Rd(n+1), 0,
Rd(0)
Z,C,N,V
1
ROL
Rd
Rotate Left Through Carry
Rd(0) ← Rd(n+1) ← C ←
C, Rd(n), Rd(7)
Z,C,N,V,H
1
ROR
Rd
Rotate Right Through Carry
Rd(7) ← Rd(n) ← C ←
C, Rd(n+1), Rd(0)
Z,C,N,V
1
ASR
Rd
Arithmetic Shift Right
Rd(n) ← Rd(n+1), n=0..6
Z,C,N,V
1
SWAP
Rd
Swap Nibbles
Rd(3..0) ↔ Rd(7..4)
None
1
BSET
s
Flag Set
SREG(s) ← 1
SREG(s)
1
BCLR
s
Flag Clear
SREG(s) ← 0
SREG(s)
1
SBI
A, b
Set Bit in I/O Register
I/O(A, b) ← 1
None
1(5)2
1
CBI
A, b
Clear Bit in I/O Register
I/O(A, b) ← 0
None
1(5)/2
1
BST
Rr, b
Bit Store from Register to T
T ← Rr(b)
T
1
BLD
Rd, b
Bit load from T to Register
Rd(b) ← T
None
1
SEC
Set Carry
C←1
C
1
CLC
Clear Carry
C←0
C
1
SEN
Set Negative Flag
N←1
N
1
CLN
Clear Negative Flag
N←0
N
1
SEZ
Set Zero Flag
Z←1
Z
1
CLZ
Clear Zero Flag
Z←0
Z
1
SEI
Global Interrupt Enable
I←1
I
1
CLI
Global Interrupt Disable
I←0
I
1
SES
Set Signed Test Flag
S←1
S
1
CLS
Clear Signed Test Flag
S←0
S
1
SEV
Set Two’s Complement Overflow
V←1
V
1
CLV
Clear Two’s Complement Overflow
V←0
V
1
SET
Set T in SREG
T←1
T
1
CLT
Clear T in SREG
T←0
T
1
SEH
Set Half Carry Flag in SREG
H←1
H
1
CLH
Clear Half Carry Flag in SREG
H←0
H
1
MCU Control Instructions
BREAK(1)
Break
(See specific descr. for BREAK)
None
1
14 AVR Instruction Set
0856I–AVR–07/10
Mnemonics
Operands
Description
Operation
Flags
#Clocks
#Clocks XMEGA
NOP
No Operation
None
1
SLEEP
Sleep
(see specific descr. for Sleep)
None
1
WDR
Watchdog Reset
(see specific descr. for WDR)
None
1
AVR Instruction Set
Notes:
1. This instruction is not available in all devices. Refer to the device specific instruction set summary.
2. Not all variants of this instruction are available in all devices. Refer to the device specific instruction set summary.
3. Cycle times for Data memory accesses assume internal memory accesses, and are not valid for accesses via the external
RAM interface.
4. One extra cycle must be added when accessing Internal SRAM. 5. Number of clock cycles for Reduced Core tinyAVR.
0856I–AVR–07/10
15
ADC – Add with Carry Description:
Adds two registers and the contents of the C Flag and places the result in the destination register Rd.
Operation:
(i) Rd←Rd+Rr+C
Syntax: Operands: Program Counter:
(i) ADCRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register (SREG) Boolean Formula: ITHSVNZC
H: Rd3•Rr3+Rr3•R3+R3•Rd3
Set if there was a carry from bit 3; cleared otherwise
S: N ⊕ V, For signed tests. V: Rd7•Rr7•R7+Rd7•Rr7•R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4 •R3 •R2 •R1 •R0
Set if the result is $00; cleared otherwise.
C: Rd7•Rr7+Rr7•R7+R7•Rd7
Set if there was carry from the MSB of the result; cleared otherwise.
R (Result) equals Rd after the operation.
0001
11rd
dddd
rrrr
–
–
⇔
⇔
⇔
⇔
⇔
⇔
Example:
add r2,r0 adc r3,r1
Words: 1(2bytes) Cycles: 1
; Add R1:R0 to R3:R2
; Add low byte
; Add with carry high byte
16 AVR Instruction Set
0856I–AVR–07/10
0000
11rd
dddd
rrrr
–
–
⇔
⇔
⇔
⇔
⇔
⇔
AVR Instruction Set
ADD – Add without Carry Description:
Adds two registers without the C Flag and places the result in the destination register Rd.
Operation:
(i) Rd←Rd+Rr
Syntax: Operands: Program Counter:
(i) ADDRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3•Rr3+Rr3•R3+R3•Rd3
Set if there was a carry from bit 3; cleared otherwise
S: N ⊕ V, For signed tests. V: Rd7•Rr7•R7+Rd7•Rr7•R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4 •R3 •R2 •R1 •R0
Set if the result is $00; cleared otherwise.
C: Rd7 •Rr7 +Rr7 •R7+ R7 •Rd7
Set if there was carry from the MSB of the result; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
add r1,r2 add r28,r28
Words: 1(2bytes) Cycles: 1
; Add r2 to r1 (r1=r1+r2)
; Add r28 to itself (r28=r28+r28)
0856I–AVR–07/10
17
ADIW – Add Immediate to Word Description:
Adds an immediate value (0 - 63) to a register pair and places the result in the register pair. This instruction operates on the upper four register pairs, and is well suited for operations on the pointer registers.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) Rd+1:Rd ← Rd+1:Rd + K Syntax: Operands:
(i) ADIWRd+1:Rd,K d∈{24,26,28,30},0≤K≤63 16-bit Opcode:
Program Counter:
PC←PC+1
1001
0110
KKdd
KKKK
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: Rdh7 • R15
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R15
Set if MSB of the result is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
C: R15 • Rdh7
Set if there was carry from the MSB of the result; cleared otherwise.
R (Result) equals Rdh:Rdl after the operation (Rdh7-Rdh0 = R15-R8, Rdl7-Rdl0=R7-R0).
Example:
adiw r25:24,1 ; Add 1 to r25:r24
adiw ZH:ZL,63 ; Add 63 to the Z-pointer(r31:r30)
Words: 1(2bytes) Cycles: 2
–
–
–
⇔
⇔
⇔
⇔
⇔
18 AVR Instruction Set
0856I–AVR–07/10
0010
00rd
dddd
rrrr
–
–
–
⇔
0
⇔
⇔
–
AND – Logical AND Description:
Performs the logical AND between the contents of register Rd and register Rr and places the result in the destination regis- ter Rd.
Operation:
(i) Rd←Rd•Rr
Syntax: Operands: Program Counter:
(i) ANDRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6 •R5 •R4 •R3• R2 •R1 •R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
AVR Instruction Set
Example:
and r2,r3 ldi r16,1 and r2,r16
Words: 1(2bytes) Cycles: 1
; Bitwise and r2 and r3, result in r2
; Set bitmask 0000 0001 in r16
; Isolate bit 0 in r2
0856I–AVR–07/10
19
ANDI – Logical AND with Immediate Description:
Performs the logical AND between the contents of register Rd and a constant and places the result in the destination regis- ter Rd.
Operation:
(i) Rd ← Rd • K Syntax:
(i) ANDI Rd,K
16-bit Opcode:
Operands:
16 ≤ d ≤ 31, 0 ≤ K ≤ 255
Program Counter:
PC ← PC + 1
0111
KKKK
dddd
KKKK
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6• R5•R4 •R3• R2• R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
andi r17,$0F ; Clear upper nibble of r17 andi r18,$10 ; Isolate bit 4 in r18
andi r19,$AA ; Clear odd bits of r19
Words: 1(2bytes) Cycles: 1
–
–
–
⇔
0
⇔
⇔
–
20 AVR Instruction Set
0856I–AVR–07/10
b7-------------------b0
C
1001
010d
dddd
0101
–
–
–
⇔
⇔
⇔
⇔
⇔
(i) ASR Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
ASR – Arithmetic Shift Right Description:
Shifts all bits in Rd one place to the right. Bit 7 is held constant. Bit 0 is loaded into the C Flag of the SREG. This operation effectively divides a signed value by two without changing its sign. The Carry Flag can be used to round the result.
(i)
Operation:
Syntax: Operands:
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests.
V: N⊕C(ForNandCaftertheshift)
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6 •R5• R4 •R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd0
Set if, before the shift, the LSB of Rd was set; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
ldi r16,$10 ;Loaddecimal16intor16 asr r16 ; r16=r16 / 2
ldi r17,$FC ;Load-4inr17
asr r17 ; r17=r17/2
Words: 1(2bytes) Cycles: 1
0856I–AVR–07/10
21
BCLR – Bit Clear in SREG Description:
Clears a single Flag in SREG.
Operation:
(i) SREG(s) ← 0
Syntax: Operands:
(i) BCLRs 0≤s≤7 16-bit Opcode:
Program Counter:
PC←PC+1
1001
0100
1sss
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
I: 0 if s = 7; Unchanged otherwise. T: 0 if s = 6; Unchanged otherwise. H: 0 if s = 5; Unchanged otherwise. S: 0 if s = 4; Unchanged otherwise. V: 0 if s = 3; Unchanged otherwise. N: 0 if s = 2; Unchanged otherwise. Z: 0 if s = 1; Unchanged otherwise. C: 0 if s = 0; Unchanged otherwise.
Example:
bclr 0 ; Clear Carry Flag bclr 7 ; Disable interrupts
Words: 1(2bytes) Cycles: 1
⇔
⇔
⇔
⇔
⇔
⇔
⇔
⇔
22 AVR Instruction Set
0856I–AVR–07/10
1111
100d
dddd
0bbb
–
–
–
–
–
–
–
–
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
; Copy bit
bst r1,2 ;Storebit2ofr1inTFlag
bld r0,4 ;LoadTFlagintobit4ofr0
Words: 1(2bytes) Cycles: 1
AVR Instruction Set
BLD – Bit Load from the T Flag in SREG to a Bit in Register Description:
Copies the T Flag in the SREG (Status Register) to bit b in register Rd.
Operation:
(i) Rd(b) ← T
Syntax: Operands:
(i) BLD Rd,b 0 ≤ d ≤ 31, 0 ≤ b ≤ 7 16 bit Opcode:
Program Counter:
PC ← PC + 1
0856I–AVR–07/10
23
BRBC – Branch if Bit in SREG is Cleared Description:
Conditional relative branch. Tests a single bit in SREG and branches relatively to PC if the bit is cleared. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form.
Operation:
(i) If SREG(s) = 0 then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRBC s,k 0 ≤ s ≤ 7, -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
cpi r20,5 ; Compare r20 to the value 5
brbc 1,noteq ; Branch if Zero Flag cleared
...
noteq:nop ; Branch destination (do nothing)
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
1111
01kk
kkkk
ksss
–
–
–
–
–
–
–
–
24 AVR Instruction Set
0856I–AVR–07/10
1111
00kk
kkkk
ksss
–
–
–
–
–
–
–
–
AVR Instruction Set
BRBS – Branch if Bit in SREG is Set Description:
Conditional relative branch. Tests a single bit in SREG and branches relatively to PC if the bit is set. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form.
Operation:
(i) If SREG(s) = 1 then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRBS s,k 0 ≤ s ≤ 7, -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
bst r0,3 ;LoadTbitwithbit3ofr0 brbs 6,bitset ; Branch T bit was set
...
bitset: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
; Branch destination (do nothing)
0856I–AVR–07/10
25
BRCC – Branch if Carry Cleared Description:
Conditional relative branch. Tests the Carry Flag (C) and branches relatively to PC if C is cleared. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is repre- sented in two’s complement form. (Equivalent to instruction BRBC 0,k).
Operation:
(i) If C = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRCC k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
1111
01kk
kkkk
k000
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
nocarry: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
add r22,r23 brcc nocarry ...
; Add r23 to r22
; Branch if carry cleared
; Branch destination (do nothing)
26 AVR Instruction Set
0856I–AVR–07/10
1111
00kk
kkkk
k000
–
–
–
–
–
–
–
–
BRCS – Branch if Carry Set Description:
Conditional relative branch. Tests the Carry Flag (C) and branches relatively to PC if C is set. This instruction branches rel- atively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBS 0,k).
Operation:
(i) If C = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRCS k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
cpi r26,$56 brcs carry ...
; Compare r26 with $56
; Branch if carry set
; Branch destination (do nothing)
carry: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
0856I–AVR–07/10
27
BREAK – Break Description:
The BREAK instruction is used by the On-chip Debug system, and is normally not used in the application software. When the BREAK instruction is executed, the AVR CPU is set in the Stopped Mode. This gives the On-chip Debugger access to internal resources.
If any Lock bits are set, or either the JTAGEN or OCDEN Fuses are unprogrammed, the CPU will treat the BREAK instruc- tion as a NOP and will not enter the Stopped mode.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) On-chip Debug system break.
Syntax: Operands:
(i) BREAK None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0101
1001
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
Words: 1(2bytes) Cycles: 1
–
–
–
–
–
–
–
–
28 AVR Instruction Set
0856I–AVR–07/10
1111
00kk
kkkk
k001
–
–
–
–
–
–
–
–
AVR Instruction Set
BREQ – Branch if Equal Description:
Conditional relative branch. Tests the Zero Flag (Z) and branches relatively to PC if Z is set. If the instruction is executed immediately after any of the instructions CP, CPI, SUB or SUBI, the branch will occur if and only if the unsigned or signed binary number represented in Rd was equal to the unsigned or signed binary number represented in Rr. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBS 1,k).
Operation:
(i) If Rd = Rr (Z = 1) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BREQ k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
cp r1,r0 breq equal ...
; Compare registers r1 and r0
; Branch if registers equal
; Branch destination (do nothing)
equal: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
0856I–AVR–07/10
29
BRGE – Branch if Greater or Equal (Signed) Description:
Conditional relative branch. Tests the Signed Flag (S) and branches relatively to PC if S is cleared. If the instruction is exe- cuted immediately after any of the instructions CP, CPI, SUB or SUBI, the branch will occur if and only if the signed binary number represented in Rd was greater than or equal to the signed binary number represented in Rr. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 4,k).
Operation:
(i) If Rd ≥ Rr (N ⊕ V = 0) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRGE k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
1111
01kk
kkkk
k100
–
–
–
–
–
–
–
–
Example:
greateq: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
cp r11,r12 brge greateq ...
; Compare registers r11 and r12 ; Branch if r11 ≥ r12 (signed)
; Branch destination (do nothing)
30 AVR Instruction Set
0856I–AVR–07/10
1111
01kk
kkkk
k101
–
–
–
–
–
–
–
–
BRHC – Branch if Half Carry Flag is Cleared Description:
Conditional relative branch. Tests the Half Carry Flag (H) and branches relatively to PC if H is cleared. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 5,k).
Operation:
(i) If H = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRHC k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
... hclear: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
brhc hclear
; Branch if Half Carry Flag cleared
; Branch destination (do nothing)
0856I–AVR–07/10
31
BRHS – Branch if Half Carry Flag is Set Description:
Conditional relative branch. Tests the Half Carry Flag (H) and branches relatively to PC if H is set. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is repre- sented in two’s complement form. (Equivalent to instruction BRBS 5,k).
Operation:
(i) If H = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRHS k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
1111
00kk
kkkk
k101
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
... hset: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
brhs hset
; Branch if Half Carry Flag set
; Branch destination (do nothing)
32 AVR Instruction Set
0856I–AVR–07/10
1111
01kk
kkkk
k111
–
–
–
–
–
–
–
–
BRID – Branch if Global Interrupt is Disabled Description:
Conditional relative branch. Tests the Global Interrupt Flag (I) and branches relatively to PC if I is cleared. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 7,k).
Operation:
(i) If I = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRID k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
... intdis: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
brid intdis
; Branch if interrupt disabled
; Branch destination (do nothing)
0856I–AVR–07/10
33
BRIE – Branch if Global Interrupt is Enabled Description:
Conditional relative branch. Tests the Global Interrupt Flag (I) and branches relatively to PC if I is set. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBS 7,k).
Operation:
(i) If I = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRIE k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
1111
00kk
kkkk
k111
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
... inten: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
brie inten
; Branch if interrupt enabled
; Branch destination (do nothing)
34 AVR Instruction Set
0856I–AVR–07/10
1111
00kk
kkkk
k000
–
–
–
–
–
–
–
–
BRLO – Branch if Lower (Unsigned) Description:
Conditional relative branch. Tests the Carry Flag (C) and branches relatively to PC if C is set. If the instruction is executed immediately after any of the instructions CP, CPI, SUB or SUBI, the branch will occur if and only if the unsigned binary number represented in Rd was smaller than the unsigned binary number represented in Rr. This instruction branches rela- tively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBS 0,k).
Operation:
(i) If Rd < Rr (C = 1) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRLO k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
loop: inc ...
r19
eor r19,r19
; Clear r19
; Increase r19
; Compare r19 with $10
; Branch if r19 < $10 (unsigned)
; Exit from loop (do nothing)
cpi r19,$10 brlo loop nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
AVR Instruction Set
0856I–AVR–07/10
35
BRLT – Branch if Less Than (Signed) Description:
Conditional relative branch. Tests the Signed Flag (S) and branches relatively to PC if S is set. If the instruction is executed immediately after any of the instructions CP, CPI, SUB or SUBI, the branch will occur if and only if the signed binary num- ber represented in Rd was less than the signed binary number represented in Rr. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s com- plement form. (Equivalent to instruction BRBS 4,k).
Operation:
(i) If Rd < Rr (N ⊕ V = 1) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRLT k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
1111
00kk
kkkk
k100
–
–
–
–
–
–
–
–
Example:
less: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
cp r16,r1 brlt less ...
; Compare r16 to r1
; Branch if r16 < r1 (signed)
; Branch destination (do nothing)
36 AVR Instruction Set
0856I–AVR–07/10
1111
00kk
kkkk
k010
–
–
–
–
–
–
–
–
BRMI – Branch if Minus Description:
Conditional relative branch. Tests the Negative Flag (N) and branches relatively to PC if N is set. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is repre- sented in two’s complement form. (Equivalent to instruction BRBS 2,k).
Operation:
(i) If N = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRMI k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
negative: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
subi r18,4 brmi negative ...
; Subtract 4 from r18
; Branch if result negative
;Branchdestination(donothing)
0856I–AVR–07/10
37
BRNE – Branch if Not Equal Description:
Conditional relative branch. Tests the Zero Flag (Z) and branches relatively to PC if Z is cleared. If the instruction is exe- cuted immediately after any of the instructions CP, CPI, SUB or SUBI, the branch will occur if and only if the unsigned or signed binary number represented in Rd was not equal to the unsigned or signed binary number represented in Rr. This instruction branches relatively to PC in either direction (PC - 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 1,k).
Operation:
(i) If Rd ≠ Rr (Z = 0) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRNE k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
1111
01kk
kkkk
k001
–
–
–
–
–
–
–
–
Example:
loop: inc ...
r27
cpi r27,5 brne loop nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
eor r27,r27
; Clear r27
; Increase r27
; Compare r27 to 5
; Branch if r27<>5
; Loop exit (do nothing)
38 AVR Instruction Set
0856I–AVR–07/10
1111
01kk
kkkk
k010
–
–
–
–
–
–
–
–
BRPL – Branch if Plus Description:
Conditional relative branch. Tests the Negative Flag (N) and branches relatively to PC if N is cleared. This instruction branches relatively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 2,k).
Operation:
(i) If N = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRPL k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
positive:
subi r26,$50 brpl positive …
nop
; Subtract $50 from r26
; Branch if r26 positive
; Branch destination (do nothing)
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
0856I–AVR–07/10
39
BRSH – Branch if Same or Higher (Unsigned) Description:
Conditional relative branch. Tests the Carry Flag (C) and branches relatively to PC if C is cleared. If the instruction is exe- cuted immediately after execution of any of the instructions CP, CPI, SUB or SUBI the branch will occur if and only if the unsigned binary number represented in Rd was greater than or equal to the unsigned binary number represented in Rr. This instruction branches relatively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 0,k).
Operation:
(i) If Rd ≥Rr (C = 0) then PC ← PC + k + 1, else PC ← PC + 1
Syntax: Operands: Program Counter:
(i) BRSH k -64 ≤ k ≤ +63 PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
1111
01kk
kkkk
k000
–
–
–
–
–
–
–
–
Example:
highsm: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
subi r19,4 brsh highsm …
; Subtract 4 from r19
; Branch if r19 >= 4 (unsigned)
; Branch destination (do nothing)
40 AVR Instruction Set
0856I–AVR–07/10
1111
01kk
kkkk
k110
–
–
–
–
–
–
–
–
BRTC – Branch if the T Flag is Cleared Description:
Conditional relative branch. Tests the T Flag and branches relatively to PC if T is cleared. This instruction branches rela- tively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBC 6,k).
Operation:
(i) If T = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRTC k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
… tclear: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
bst r3,5 ;Storebit5ofr3inTFlag
brtc tclear
; Branch if this bit was cleared
; Branch destination (do nothing)
0856I–AVR–07/10
41
BRTS – Branch if the T Flag is Set Description:
Conditional relative branch. Tests the T Flag and branches relatively to PC if T is set. This instruction branches relatively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is represented in two’s complement form. (Equivalent to instruction BRBS 6,k).
Operation:
(i) If T = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRTS k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
1111
00kk
kkkk
k110
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
… tset: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
bst r3,5 ;Storebit5ofr3inTFlag
brts tset
; Branch if this bit was set
; Branch destination (do nothing)
42 AVR Instruction Set
0856I–AVR–07/10
1111
01kk
kkkk
k011
–
–
–
–
–
–
–
–
BRVC – Branch if Overflow Cleared
Description:
Conditional relative branch. Tests the Overflow Flag (V) and branches relatively to PC if V is cleared. This instruction branch- es relatively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is repre- sented in two’s complement form. (Equivalent to instruction BRBC 3,k).
Operation:
(i) If V = 0 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRVC k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
noover: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
add r3,r4 brvc noover …
; Add r4 to r3
; Branch if no overflow
;Branchdestination(donothing)
0856I–AVR–07/10
43
BRVS – Branch if Overflow Set Description:
Conditional relative branch. Tests the Overflow Flag (V) and branches relatively to PC if V is set. This instruction branches relatively to PC in either direction (PC – 63 ≤ destination ≤ PC + 64). The parameter k is the offset from PC and is repre- sented in two’s complement form. (Equivalent to instruction BRBS 3,k).
Operation:
(i) If V = 1 then PC ← PC + k + 1, else PC ← PC + 1 Syntax: Operands:
(i) BRVS k -64 ≤ k ≤ +63 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
PC ← PC + 1, if condition is false
1111
00kk
kkkk
k011
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
overfl: nop
Words: 1(2bytes)
Cycles: 1 if condition is false
2 if condition is true
add brvs …
r3,r4 overfl
; Add r4 to r3
; Branch if overflow
; Branch destination (do nothing)
44 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0sss
1000
⇔
⇔
⇔
⇔
⇔
⇔
⇔
⇔
AVR Instruction Set
BSET – Bit Set in SREG Description:
Sets a single Flag or bit in SREG.
Operation:
(i) SREG(s) ← 1
Syntax: Operands: Program Counter:
(i) BSET s 0≤s≤7 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
I: 1 T: 1 H: 1 S: 1 V: 1 N: 1 Z: 1 C: 1
Example:
bset 6 bset 7
Words: 1(2bytes) Cycles: 1
if s = 7; Unchanged otherwise. if s = 6; Unchanged otherwise. if s = 5; Unchanged otherwise. if s = 4; Unchanged otherwise. if s = 3; Unchanged otherwise. if s = 2; Unchanged otherwise. if s = 1; Unchanged otherwise. if s = 0; Unchanged otherwise.
; Set T Flag
; Enable interrupt
0856I–AVR–07/10
45
BST – Bit Store from Bit in Register to T Flag in SREG Description:
Stores bit b from Rd to the T Flag in SREG (Status Register).
Operation:
(i) T ← Rd(b)
Syntax: Operands:
(i) BST Rd,b 0 ≤ d ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1
1111
101d
dddd
0bbb
Status Register (SREG) and Boolean Formula: ITHSVNZC
T: 0 if bit b in Rd is cleared. Set to 1 otherwise.
Example:
; Copy bit
bst r1,2 ;Storebit2ofr1inTFlag
bld r0,4 ;LoadTintobit4ofr0
Words: 1(2bytes) Cycles: 1
–
⇔
–
–
–
–
–
–
46 AVR Instruction Set
0856I–AVR–07/10
1001
010k
kkkk
111k
kkkk
kkkk
kkkk
kkkk
–
–
–
–
–
–
–
–
AVR Instruction Set
CALL – Long Call to a Subroutine Description:
Calls to a subroutine within the entire Program memory. The return address (to the instruction after the CALL) will be stored onto the Stack. (See also RCALL). The Stack Pointer uses a post-decrement scheme during CALL.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) PC ← k
(ii) PC ← k
Syntax:
(i) CALL k
(ii) CALL k
32-bit Opcode:
Devices with 16 bits PC, 128K bytes Program memory maximum. Devices with 22 bits PC, 8M bytes Program memory maximum.
Operands:
0 ≤ k < 64K 0 ≤ k < 4M
Program Counter
PC ← k PC ← k
Stack:
STACK ← PC+2
SP ← SP-2, (2 bytes, 16 bits)
STACK ← PC+2
SP ← SP-3 (3 bytes, 22 bits)
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
check: cpi
breq error
ret
... error: rjmp
Words : Cycles :
Cycles XMEGA:
error
mov r16,r0 call check nop
...
;Copyr0tor16
; Call subroutine
; Continue (do nothing)
; Check if r16 has a special value
; Branch if equal
; Return from subroutine
; Infinite loop
2 (4 bytes)
4, devices with 16 bit PC 5, devices with 22 bit PC 3, devices with 16 bit PC 4, devices with 22 bit PC
r16,$42
0856I–AVR–07/10
47
CBI – Clear Bit in I/O Register Description:
Clears a specified bit in an I/O Register. This instruction operates on the lower 32 I/O Registers – addresses 0-31.
Operation:
(i) I/O(A,b) ← 0
Syntax: Operands: Program Counter:
(i) CBIA,b 0≤A≤31,0≤b≤7 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
1001
1000
AAAA
Abbb
–
–
–
–
–
–
–
–
Example:
cbi
$12,7
; Clear bit 7 in Port D
Words :
Cycles :
Cycles XMEGA:
Cycles Reduced Core tinyAVR:
1 (2 bytes) 2
1
1
48 AVR Instruction Set
0856I–AVR–07/10
–
–
–
⇔
0
⇔
⇔
–
CBR – Clear Bits in Register Description:
Clears the specified bits in register Rd. Performs the logical AND between the contents of register Rd and the complement of the constant mask K. The result will be placed in register Rd.
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
AVR Instruction Set
Operation:
(i) Rd ← Rd • ($FF - K)
Syntax: Operands:
(i) CBR Rd,K 16 ≤ d ≤ 31, 0 ≤ K ≤ 255 16-bit Opcode: (see ANDI with K complemented)
Program Counter:
PC ← PC + 1
Example:
Words: 1(2bytes) Cycles: 1
cbr r16,$F0 cbr r18,1
; Clear upper nibble of r16
; Clear bit 0 in r18
0856I–AVR–07/10
49
CLC – Clear Carry Flag Description:
Clears the Carry Flag (C) in SREG (Status Register).
Operation:
(i) C←0
Syntax: Operands:
(i) CLC None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
1000
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: 0
Carry Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
–
–
–
–
–
–
–
0
add r0,r0 ; Add r0 to itself clc ; Clear Carry Flag
50 AVR Instruction Set
0856I–AVR–07/10
1001
0100
1101
1000
–
–
0
–
–
–
–
–
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: 0
Half Carry Flag cleared
Example:
clh ; Clear the Half Carry Flag
Words: 1(2bytes) Cycles: 1
AVR Instruction Set
CLH – Clear Half Carry Flag Description:
Clears the Half Carry Flag (H) in SREG (Status Register).
Operation:
(i) H←0
Syntax: Operands:
(i) CLH None
16-bit Opcode:
Program Counter:
PC ← PC + 1
0856I–AVR–07/10
51
CLI – Clear Global Interrupt Flag Description:
Clears the Global Interrupt Flag (I) in SREG (Status Register). The interrupts will be immediately disabled. No interrupt will be executed after the CLI instruction, even if it occurs simultaneously with the CLI instruction.
Operation:
(i) I←0
Syntax: Operands:
(i) CLI None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
1111
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
I: 0
Global Interrupt Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
0
–
–
–
–
–
–
–
in temp, SREG ; Store SREG value (temp must be defined by user) cli ; Disable interrupts during timed sequence
sbi EECR, EEMWE; Start EEPROM write
sbi EECR, EEWE
out SREG, temp ; Restore SREG value (I-Flag)
52 AVR Instruction Set
0856I–AVR–07/10
1001
0100
1010
1000
–
–
–
–
–
0
–
–
AVR Instruction Set
CLN – Clear Negative Flag Description:
Clears the Negative Flag (N) in SREG (Status Register).
Operation:
(i) N←0
Syntax: Operands:
(i) CLN None
16-bit Opcode:
Program Counter:
PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
N: 0
Negative Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
add cln
r2,r3
; Add r3 to r2
; Clear Negative Flag
0856I–AVR–07/10
53
CLR – Clear Register Description:
Clears a register. This instruction performs an Exclusive OR between a register and itself. This will clear all bits in the register.
Operation:
(i) Rd ← Rd ⊕ Rd
Syntax: Operands:
(i) CLR Rd 0 ≤ d ≤ 31 16-bit Opcode: (see EOR Rd,Rd)
Program Counter:
PC ← PC + 1
0010
01dd
dddd
dddd
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: 0 Cleared
V: 0 Cleared
N: 0 Cleared
Z: 1 Set
R (Result) equals Rd after the operation.
–
–
–
0
0
0
1
–
Example:
loop: inc ...
r18 ; increase r18
clr r18 ; clear r18
cpi r18,$50 brne loop
Words: 1(2bytes) Cycles: 1
; Compare r18 to $50
54 AVR Instruction Set
0856I–AVR–07/10
1001
0100
1100
1000
–
–
–
0
–
–
–
–
CLS – Clear Signed Flag Description:
Clears the Signed Flag (S) in SREG (Status Register).
Operation:
(i) S←0
Syntax: Operands:
(i) CLS None
16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: 0
Signed Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
add cls
r2,r3
; Add r3 to r2
; Clear Signed Flag
0856I–AVR–07/10
55
CLT – Clear T Flag Description:
Clears the T Flag in SREG (Status Register).
Operation:
(i) T←0
Syntax: Operands:
(i) CLT None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
1110
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
T: 0
T Flag cleared
Example:
clt ; Clear T Flag
Words: 1(2bytes) Cycles: 1
–
0
–
–
–
–
–
–
56 AVR Instruction Set
0856I–AVR–07/10
1001
0100
1011
1000
–
–
–
–
0
–
–
–
CLV – Clear Overflow Flag Description:
Clears the Overflow Flag (V) in SREG (Status Register).
Operation:
(i) V←0
Syntax: Operands:
(i) CLV None
16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
V: 0
Overflow Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
add clv
r2,r3
; Add r3 to r2
; Clear Overflow Flag
0856I–AVR–07/10
57
CLZ – Clear Zero Flag Description:
Clears the Zero Flag (Z) in SREG (Status Register).
Operation:
(i) Z←0
Syntax: Operands:
(i) CLZ None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
1001
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
0
–
Z: 0
Zero Flag cleared
Example:
Words: 1(2bytes) Cycles: 1
add r2,r3 clz
; Add r3 to r2
; Clear zero
58 AVR Instruction Set
0856I–AVR–07/10
1001
010d
dddd
0000
–
–
–
⇔
0
⇔
⇔
1
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N⊕V
For signed tests.
V: 0 Cleared.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6• R5• R4 •R3 •R2• R1 •R0
Set if the result is $00; Cleared otherwise.
C: 1 Set.
R (Result) equals Rd after the operation.
AVR Instruction Set
COM – One’s Complement Description:
This instruction performs a One’s Complement of register Rd.
Operation:
(i) Rd ← $FF - Rd
Syntax: Operands:
(i) COM Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
Example:
zero: nop
Words: 1(2bytes) Cycles: 1
com breq ...
r4 zero
; Take one’s complement of r4
; Branch if zero
;Branchdestination(donothing)
0856I–AVR–07/10
59
CP – Compare Description:
This instruction performs a compare between two registers Rd and Rr. None of the registers are changed. All conditional branches can be used after this instruction.
Operation:
(i) Rd - Rr
Syntax: Operands:
(i) CP Rd,Rr 0 ≤ d ≤ 31, 0 ≤ r ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
0001
01rd
dddd
rrrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3 •Rr3+ Rr3 •R3 +R3• Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7• Rr7 •R7+ Rd7 •Rr7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4 •R3 •R2 •R1 •R0
Set if the result is $00; cleared otherwise.
C: Rd7 •Rr7+ Rr7• R7 +R7• Rd7
Set if the absolute value of the contents of Rr is larger than the absolute value of Rd; cleared otherwise.
R (Result) after the operation.
–
–
⇔
⇔
⇔
⇔
⇔
⇔
Example:
noteq: nop
Words: 1(2bytes) Cycles: 1
cp r4,r19 brne noteq ...
; Compare r4 with r19
; Branch if r4 <> r19
; Branch destination (do nothing)
60 AVR Instruction Set
0856I–AVR–07/10
0000
01rd
dddd
rrrr
–
–
⇔
⇔
⇔
⇔
⇔
⇔
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3 •Rr3+ Rr3 •R3 +R3 •Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7 •Rr7• R7+ Rd7• Rr7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6• R5• R4 •R3 •R2 •R1• R0 •Z
Previous value remains unchanged when the result is zero; cleared otherwise.
C: Rd7 •Rr7+ Rr7• R7 +R7 •Rd7
Set if the absolute value of the contents of Rr plus previous carry is larger than the absolute value of Rd; cleared otherwise.
AVR Instruction Set
CPC – Compare with Carry Description:
This instruction performs a compare between two registers Rd and Rr and also takes into account the previous carry. None of the registers are changed. All conditional branches can be used after this instruction.
Operation:
(i) Rd – Rr – C
Syntax: Operands:
(i) CPC Rd,Rr 0 ≤ d ≤ 31, 0 ≤ r ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
R (Result) after the operation.
Example:
noteq:
cp r2,r0 cpc r3,r1 brne noteq …
nop
; Compare r3:r2 with r1:r0
; Compare low byte
; Compare high byte
; Branch if not equal
; Branch destination (do nothing)
0856I–AVR–07/10
61
Words: 1(2bytes) Cycles: 1
62 AVR Instruction Set
0856I–AVR–07/10
0011
KKKK
dddd
KKKK
–
–
⇔
⇔
⇔
⇔
⇔
⇔
CPI – Compare with Immediate Description:
This instruction performs a compare between register Rd and a constant. The register is not changed. All conditional branches can be used after this instruction.
Operation:
(i) Rd – K
Syntax: Operands:
(i) CPI Rd,K 16 ≤ d ≤ 31, 0≤ K ≤ 255 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3 •K3+ K3• R3+ R3 •Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7 •K7 •R7 +Rd7 •K7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6• R5 •R4• R3• R2 •R1 •R0
Set if the result is $00; cleared otherwise.
C: Rd7 •K7 +K7 •R7+ R7 •Rd7
Set if the absolute value of K is larger than the absolute value of Rd; cleared otherwise.
R (Result) after the operation.
Example:
error: nop
Words: 1(2bytes) Cycles: 1
cpi brne …
r19,3 error
; Compare r19 with 3
; Branch if r19<>3
; Branch destination (do nothing)
0856I–AVR–07/10
63
CPSE – Compare Skip if Equal Description:
This instruction performs a compare between two registers Rd and Rr, and skips the next instruction if Rd = Rr.
Operation:
(i) If Rd = Rr then PC ← PC + 2 (or 3) else PC ← PC + 1 Syntax: Operands:
(i) CPSE Rd,Rr 0 ≤ d ≤ 31, 0 ≤ r ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1, Condition false – no skip PC ← PC + 2, Skip a one word instruction PC ← PC + 3, Skip a two word instruction
0001
00rd
dddd
rrrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
; Increase r4
; Compare r4 to r0
; Only executed if r4<>r0
; Continue (do nothing)
Words: 1(2bytes)
Cycles: 1 if condition is false (no skip)
2 if condition is true (skip is executed) and the instruction skipped is 1 word 3 if condition is true (skip is executed) and the instruction skipped is 2 words
–
–
–
–
–
–
–
–
inc r4 cpse r4,r0 neg r4 nop
64 AVR Instruction Set
0856I–AVR–07/10
1001
010d
dddd
1010
–
–
–
⇔
⇔
⇔
⇔
–
AVR Instruction Set
DEC – Decrement
Description:
Subtracts one -1- from the contents of register Rd and places the result in the destination register Rd.
The C Flag in SREG is not affected by the operation, thus allowing the DEC instruction to be used on a loop counter in mul- tiple-precision computations.
When operating on unsigned values, only BREQ and BRNE branches can be expected to perform consistently. When operating on two’s complement values, all signed branches are available.
Operation:
(i) Rd←Rd-1
Syntax: Operands:
(i) DECRd 0≤d≤31 16-bit Opcode:
Program Counter:
PC←PC+1
Status Register and Boolean Formula: ITHSVNZC
S: N⊕V
For signed tests.
V: R7 •R6 •R5 •R4• R3• R2 •R1• R0
Set if two’s complement overflow resulted from the operation; cleared otherwise. Two’s complement overflow occurs if and only if Rd was $80 before the operation.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6• R5 •R4• R3• R2• R1• R0
Set if the result is $00; Cleared otherwise.
R (Result) equals Rd after the operation.
Example:
loop:
ldi r17,$10 add r1,r2 dec r17 brne loop nop
; Load constant in r17
; Add r2 to r1
; Decrement r17
; Branch if r17<>0
; Continue (do nothing)
Words: 1(2bytes) Cycles: 1
0856I–AVR–07/10
65
DES – Data Encryption Standard Description:
The module is an instruction set extension to the AVR CPU, performing DES iterations. The 64-bit data block (plaintext or ciphertext) is placed in the CPU register file, registers R0-R7, where LSB of data is placed in LSB of R0 and MSB of data is placed in MSB of R7. The full 64-bit key (including parity bits) is placed in registers R8-R15, organized in the register file with LSB of key in LSB of R8 and MSB of key in MSB of R15. Executing one DES instruction performs one round in the DES algorithm. Sixteen rounds must be executed in increasing order to form the correct DES ciphertext or plaintext. Inter- mediate results are stored in the register file (R0-R15) after each DES instruction. The instruction’s operand (K) determines which round is executed, and the half carry flag (H) determines whether encryption or decryption is performed.
The DES algorithm is described in “Specifications for the Data Encryption Standard” (Federal Information Processing Stan- dards Publication 46). Intermediate results in this implementation differ from the standard because the initial permutation and the inverse initial permutation are performed each iteration. This does not affect the result in the final ciphertext or plaintext, but reduces execution time.
Operation:
(i) If H = 0 then If H = 1 then
Syntax:
Encrypt round (R7-R0, R15-R8, K) Decrypt round (R7-R0, R15-R8, K)
Operands: Program Counter:
(i) DESK 0x00≤K≤0x0F PC←PC+1 16-bit Opcode:
Example:
DES 0x00
DES 0x01
…
DES 0x0E
DES 0x0F
1001
0100
KKKK
1011
Words:
Cycles:
Note: 1. If the DES instruction is succeeding a non-DES instruction, an extra cycle is inserted.
66
AVR Instruction Set
1
1 (2(1))
0856I–AVR–07/10
1001
0101
0001
1001
–
–
–
–
–
–
–
–
EICALL – Extended Indirect Call to Subroutine Description:
Indirect call of a subroutine pointed to by the Z (16 bits) Pointer Register in the Register File and the EIND Register in the I/O space. This instruction allows for indirect calls to the entire 4M (words) Program memory space. See also ICALL. The Stack Pointer uses a post-decrement scheme during EICALL.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) PC(15:0) ← Z(15:0) PC(21:16) ← EIND
Syntax: Operands:
(i) EICALL None
16-bit Opcode:
Program Counter:
See Operation
Stack:
STACK ← PC + 1
SP ← SP – 3 (3 bytes, 22 bits)
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
Words
Cycles
Cycles XMEGA:
: :
ldi r16,$05 out EIND,r16 ldi r30,$00 ldi r31,$10 eicall
; Set up EIND and Z-pointer
; Call to $051000
1 (2 bytes)
4 (only implemented in devices with 22 bit PC) 3 (only implemented in devices with 22 bit PC)
0856I–AVR–07/10
67
EIJMP – Extended Indirect Jump Description:
Indirect jump to the address pointed to by the Z (16 bits) Pointer Register in the Register File and the EIND Register in the I/O space. This instruction allows for indirect jumps to the entire 4M (words) Program memory space. See also IJMP.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) PC(15:0) ← Z(15:0) PC(21:16) ← EIND
Syntax: Operands:
(i) EIJMP None
16-bit Opcode:
Program Counter:
See Operation
Stack:
Not Affected
1001
0100
0001
1001
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
Words: 1(2bytes) Cycles: 2
ldi r16,$05 out EIND,r16 ldi r30,$00 ldi r31,$10 eijmp
; Set up EIND and Z-pointer
; Jump to $051000
68 AVR Instruction Set
0856I–AVR–07/10
(i)
1001
0101
1101
1000
(ii)
1001
000d
dddd
0110
(iii)
1001
000d
dddd
0111
–
–
–
–
–
–
–
–
AVR Instruction Set
ELPM – Extended Load Program Memory Description:
Loads one byte pointed to by the Z-register and the RAMPZ Register in the I/O space, and places this byte in the destina- tion register Rd. This instruction features a 100% space effective constant initialization or constant data fetch. The Program memory is organized in 16-bit words while the Z-pointer is a byte address. Thus, the least significant bit of the Z-pointer selects either low byte (ZLSB = 0) or high byte (ZLSB = 1). This instruction can address the entire Program memory space. The Z-pointer Register can either be left unchanged by the operation, or it can be incremented. The incrementation applies to the entire 24-bit concatenation of the RAMPZ and Z-pointer Registers.
Devices with Self-Programming capability can use the ELPM instruction to read the Fuse and Lock bit value. Refer to the device documentation for a detailed description.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
The result of these combinations is undefined: ELPM r30, Z+
ELPM r31, Z+
Operation:
(i) R0 ← (RAMPZ:Z)
(ii) Rd ← (RAMPZ:Z)
(iii) Rd ← (RAMPZ:Z)
Syntax:
(i) ELPM
(ii) ELPM Rd, Z
(iii) ELPM Rd, Z+
16 bit Opcode:
(RAMPZ:Z) ← (RAMPZ:Z) + 1 Operands:
None, R0 implied 0 ≤ d ≤ 31
0 ≤ d ≤ 31
Comment:
RAMPZ:Z: Unchanged, R0 implied destination register RAMPZ:Z: Unchanged
RAMPZ:Z: Post incremented
Program Counter:
PC ← PC + 1 PC ← PC + 1 PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
ldi ZL, byte3(Table_1<<1); Initialize Z-pointer out RAMPZ, ZL
ldi ZH, byte2(Table_1<<1)
ldi ZL, byte1(Table_1<<1)
elpm r16, Z+
...
Table_1:
.dw 0x3738
; Load constant from Program
; memory pointed to by RAMPZ:Z (Z is r31:r30)
; 0x38 is addressed when ZLSB = 0 ; 0x37 is addressed when ZLSB = 1
0856I–AVR–07/10
69
...
Words: 1(2bytes) Cycles: 3
70 AVR Instruction Set
0856I–AVR–07/10
0010
01rd
dddd
rrrr
–
–
–
⇔
0
⇔
⇔
–
EOR – Exclusive OR Description:
Performs the logical EOR between the contents of register Rd and register Rr and places the result in the destination regis- ter Rd.
Operation:
(i) Rd←Rd ⊕ Rr
Syntax: Operands: Program Counter:
(i) EORRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6 •R5 •R4• R3• R2 •R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
AVR Instruction Set
Example:
Words: 1(2bytes) Cycles: 1
eor r4,r4 eor r0,r22
; Clear r4
; Bitwise exclusive or between r0 and r22
0856I–AVR–07/10
71
FMUL – Fractional Multiply Unsigned Description:
This instruction performs 8-bit × 8-bit → 16-bit unsigned multiplication and shifts the result one bit left. Rd Rr R1 R0
×
Let (N.Q) denote a fractional number with N binary digits left of the radix point, and Q binary digits right of the radix point. A multiplication between two numbers in the formats (N1.Q1) and (N2.Q2) results in the format ((N1+N2).(Q1+Q2)). For sig- nal processing applications, the format (1.7) is widely used for the inputs, resulting in a (2.14) format for the product. A left shift is required for the high byte of the product to be in the same format as the inputs. The FMUL instruction incorporates the shift operation in the same number of cycles as MUL.
The (1.7) format is most commonly used with signed numbers, while FMUL performs an unsigned multiplication. This instruction is therefore most useful for calculating one of the partial products when performing a signed multiplication with 16-bit inputs in the (1.15) format, yielding a result in the (1.31) format. Note: the result of the FMUL operation may suffer from a 2’s complement overflow if interpreted as a number in the (1.15) format. The MSB of the multiplication before shift- ing must be taken into account, and is found in the carry bit. See the following example.
The multiplicand Rd and the multiplier Rr are two registers containing unsigned fractional numbers where the implicit radix point lies between bit 6 and bit 7. The 16-bit unsigned fractional product with the implicit radix point between bit 14 and bit 15 is placed in R1 (high byte) and R0 (low byte).
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Product High
Product Low
Æ
8 8 16
Multiplicand
Multiplier
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) FMUL Rd,Rr
16-bit Opcode:
(unsigned (1.15) ← unsigned (1.7) × unsigned (1.7)) Operands: Program Counter:
16 ≤ d ≤ 23, 16≤ r ≤ 23 PC ← PC + 1
0000
0011
0ddd
1rrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R16
Set if bit 15 of the result before left shift is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
–
–
–
–
–
–
⇔
⇔
72 AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
Example:
;****************************************************************************** ;* DESCRIPTION
;*Signed fractional multiply of two 16-bit numbers with 32-bit result.
;* USAGE
;*r19:r18:r17:r16 = ( r23:r22 * r21:r20 ) << 1 ;****************************************************************************** fmuls16x16_32:
clrr2
fmulsr23, r21;((signed)ah * (signed)bh) << 1
movwr19:r18, r1:r0
fmulr22, r20;(al * bl) << 1
adcr18, r2
movwr17:r16, r1:r0
fmulsur23, r20;((signed)ah * bl) << 1
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
fmulsur21, r22;((signed)bh * al) << 1
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
Words: 1(2bytes) Cycles: 2
0856I–AVR–07/10
73
FMULS – Fractional Multiply Signed Description:
This instruction performs 8-bit × 8-bit → 16-bit signed multiplication and shifts the result one bit left. Rd Rr R1 R0
×→
8 8 16
Let (N.Q) denote a fractional number with N binary digits left of the radix point, and Q binary digits right of the radix point. A multiplication between two numbers in the formats (N1.Q1) and (N2.Q2) results in the format ((N1+N2).(Q1+Q2)). For sig- nal processing applications, the format (1.7) is widely used for the inputs, resulting in a (2.14) format for the product. A left shift is required for the high byte of the product to be in the same format as the inputs. The FMULS instruction incorporates the shift operation in the same number of cycles as MULS.
The multiplicand Rd and the multiplier Rr are two registers containing signed fractional numbers where the implicit radix point lies between bit 6 and bit 7. The 16-bit signed fractional product with the implicit radix point between bit 14 and bit 15 is placed in R1 (high byte) and R0 (low byte).
Note that when multiplying 0x80 (-1) with 0x80 (-1), the result of the shift operation is 0x8000 (-1). The shift operation thus gives a two’s complement overflow. This must be checked and handled by software.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Product High
Product Low
Multiplicand
Multiplier
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) FMULS Rd,Rr
16-bit Opcode:
(signed (1.15) ← signed (1.7) × signed (1.7)) Operands: Program Counter:
16 ≤ d ≤ 23, 16≤ r ≤ 23 PC ← PC + 1
0000
0011
1ddd
0rrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R16
Set if bit 15 of the result before left shift is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
Example:
fmuls r23,r22 ; Multiply signed r23 and r22 in (1.7) format, result in (1.15) format movw r23:r22,r1:r0 ; Copy result back in r23:r22
–
–
–
–
–
–
⇔
⇔
74 AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
Words: 1(2bytes) Cycles: 2
0856I–AVR–07/10
75
FMULSU – Fractional Multiply Signed with Unsigned Description:
This instruction performs 8-bit × 8-bit → 16-bit signed multiplication and shifts the result one bit left. Rd Rr R1 R0
×→
8 8 16
Let (N.Q) denote a fractional number with N binary digits left of the radix point, and Q binary digits right of the radix point. A multiplication between two numbers in the formats (N1.Q1) and (N2.Q2) results in the format ((N1+N2).(Q1+Q2)). For sig- nal processing applications, the format (1.7) is widely used for the inputs, resulting in a (2.14) format for the product. A left shift is required for the high byte of the product to be in the same format as the inputs. The FMULSU instruction incorpo- rates the shift operation in the same number of cycles as MULSU.
The (1.7) format is most commonly used with signed numbers, while FMULSU performs a multiplication with one unsigned and one signed input. This instruction is therefore most useful for calculating two of the partial products when performing a signed multiplication with 16-bit inputs in the (1.15) format, yielding a result in the (1.31) format. Note: the result of the FMULSU operation may suffer from a 2's complement overflow if interpreted as a number in the (1.15) format. The MSB of the multiplication before shifting must be taken into account, and is found in the carry bit. See the following example.
The multiplicand Rd and the multiplier Rr are two registers containing fractional numbers where the implicit radix point lies between bit 6 and bit 7. The multiplicand Rd is a signed fractional number, and the multiplier Rr is an unsigned fractional number. The 16-bit signed fractional product with the implicit radix point between bit 14 and bit 15 is placed in R1 (high byte) and R0 (low byte).
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Product High
Product Low
Multiplicand
Multiplier
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) FMULSU Rd,Rr
16-bit Opcode:
(signed (1.15) ← signed (1.7) × unsigned (1.7)) Operands: Program Counter:
16 ≤ d ≤ 23, 16≤ r ≤ 23 PC ← PC + 1
0000
0011
1ddd
1rrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R16
Set if bit 15 of the result before left shift is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
–
–
–
–
–
–
⇔
⇔
76 AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
Example:
;****************************************************************************** ;* DESCRIPTION
;*Signed fractional multiply of two 16-bit numbers with 32-bit result.
;* USAGE
;*r19:r18:r17:r16 = ( r23:r22 * r21:r20 ) << 1 ;****************************************************************************** fmuls16x16_32:
clrr2
fmulsr23, r21;((signed)ah * (signed)bh) << 1
movwr19:r18, r1:r0
fmulr22, r20;(al * bl) << 1
adcr18, r2
movwr17:r16, r1:r0
fmulsur23, r20;((signed)ah * bl) << 1
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
fmulsur21, r22;((signed)bh * al) << 1
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
Words: 1(2bytes) Cycles: 2
0856I–AVR–07/10
77
ICALL – Indirect Call to Subroutine Description:
Calls to a subroutine within the entire 4M (words) Program memory. The return address (to the instruction after the CALL) will be stored onto the Stack. See also RCALL. The Stack Pointer uses a post-decrement scheme during CALL.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) PC(15:0) ← Z(15:0) Devices with 16 bits PC, 128K bytes Program memory maximum.
(ii) PC(15:0) ← Z(15:0) Devices with 22 bits PC, 8M bytes Program memory maximum.
PC(21:16) ← 0
Syntax: Operands:
(i) ICALL None
(ii) ICALL None
16-bit Opcode:
Program Counter:
See Operation See Operation
Stack:
STACK ← PC + 1
SP ← SP - 2 (2 bytes, 16 bits)
STACK ← PC + 1
SP ← SP - 3 (3 bytes, 22 bits)
1001
0101
0000
1001
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
mov r30,r0 icall
Words : Cycles :
Cycles XMEGA:
; Set offset to call table
; Call routine pointed to by r31:r30
1 (2 bytes)
3, devices with 16 bit PC 4, devices with 22 bit PC 2, devices with 16 bit PC 3, devices with 22 bit PC
78 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0000
1001
–
–
–
–
–
–
–
–
AVR Instruction Set
IJMP – Indirect Jump Description:
Indirect jump to the address pointed to by the Z (16 bits) Pointer Register in the Register File. The Z-pointer Register is 16 bits wide and allows jump within the lowest 64K words (128K bytes) section of Program memory.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) PC ← Z(15:0) Devices with 16 bits PC, 128K bytes Program memory maximum.
(ii) PC(15:0) ← Z(15:0) Devices with 22 bits PC, 8M bytes Program memory maximum.
PC(21:16) ← 0
Syntax: Operands: Program Counter:
(i),(ii) IJMP None See Operation
16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Stack:
Not Affected
Example:
Words: 1(2bytes) Cycles: 2
mov ijmp
r30,r0
; Set offset to jump table
; Jump to routine pointed to by r31:r30
0856I–AVR–07/10
79
IN - Load an I/O Location to Register Description:
Loads data from the I/O Space (Ports, Timers, Configuration Registers etc.) into register Rd in the Register File.
Operation:
(i) Rd ← I/O(A)
Syntax: Operands:
(i) IN Rd,A 0 ≤ d ≤ 31, 0 ≤ A ≤ 63 16-bit Opcode:
Program Counter:
PC ← PC + 1
1011
0AAd
dddd
AAAA
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
exit:
in r25,$16 cpi r25,4 breq exit ...
nop
; Read Port B
; Compare read value to constant
; Branch if r25=4
;Branchdestination(donothing)
Words: 1(2bytes) Cycles: 1
80 AVR Instruction Set
0856I–AVR–07/10
1001
010d
dddd
0011
–
–
–
⇔
⇔
⇔
⇔
–
AVR Instruction Set
INC – Increment
Description:
Adds one -1- to the contents of register Rd and places the result in the destination register Rd.
The C Flag in SREG is not affected by the operation, thus allowing the INC instruction to be used on a loop counter in mul- tiple-precision computations.
When operating on unsigned numbers, only BREQ and BRNE branches can be expected to perform consistently. When operating on two’s complement values, all signed branches are available.
Operation:
(i) Rd←Rd+1
Syntax: Operands: Program Counter:
(i) INCRd 0≤d≤31 PC←PC+1 16-bit Opcode:
Status Register and Boolean Formula: ITHSVNZC
S: N⊕V
For signed tests.
V: R7 •R6 •R5 •R4 •R3• R2 •R1 •R0
Set if two’s complement overflow resulted from the operation; cleared otherwise. Two’s complement overflow occurs if and only if Rd was $7F before the operation.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7 •R6 •R5 •R4•R3 •R2• R1• R0
Set if the result is $00; Cleared otherwise.
R (Result) equals Rd after the operation.
Example:
loop:
clr r22
inc r22
...
cpi r22,$4F brne loop nop
; clear r22
; increment r22
; Compare r22 to $4f
; Branch if not equal
; Continue (do nothing)
0856I–AVR–07/10
81
Words: 1(2bytes) Cycles: 1
82 AVR Instruction Set
0856I–AVR–07/10
1001
010k
kkkk
110k
kkkk
kkkk
kkkk
kkkk
–
–
–
–
–
–
–
–
JMP – Jump
Description:
Jump to an address within the entire 4M (words) Program memory. See also RJMP.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
AVR Instruction Set
Operation:
(i) PC ← k
Syntax: Operands:
(i) JMP k 0 ≤ k < 4M 32-bit Opcode:
Program Counter:
PC ← k
Stack:
Unchanged
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
farplc: nop
Words: 2(4bytes) Cycles: 3
mov r1,r0 jmp farplc ...
; Copy r0 to r1
; Unconditional jump
; Jump destination (do nothing)
0856I–AVR–07/10
83
LAC – Load And Clear
Description: Operation:
(i) (Z) ← Rd • ($FF – (Z))
Syntax: Operands:
(i) LAC Z,Rd 0 ≤ d ≤ 31 16-bit Opcode:
Words: 1(2bytes) Cycles: 1
Program Counter:
PC ← PC + 1
1001
001r
rrrr
0110
84
AVR Instruction Set
0856I–AVR–07/10
1001
001r
rrrr
0101
LAS – Load And Set
Description:
Operation:
(i) (Z) ← Rd v (Z), Rd ← (Z)
AVR Instruction Set
Syntax:
(i) LAS Z,Rd
16-bit Opcode:
Words: 1(2bytes) Cycles: 1
Operands:
0 ≤ d ≤ 31
Program Counter:
PC ← PC + 1
0856I–AVR–07/10
85
LAT – Load And Toggle
Description: Operation:
(i) (Z) ← Rd ⊕ (Z), Rd ← (Z) Syntax: Operands:
(i) LAT Z,Rd 0 ≤ d ≤ 31 16-bit Opcode:
Words: 1(2bytes) Cycles: 1
Program Counter:
PC ← PC + 1
1001
001r
rrrr
0111
86
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
LD – Load Indirect from Data Space to Register using Index X Description:
Loads one byte indirect from the data space to a register. For parts with SRAM, the data space consists of the Register File, I/O memory and internal SRAM (and external SRAM if applicable). For parts without SRAM, the data space consists of the Register File only. In some parts the Flash Memory has been mapped to the data space and can be read using this command. The EEPROM has a separate address space.
The data location is pointed to by the X (16 bits) Pointer Register in the Register File. Memory access is limited to the cur- rent data segment of 64K bytes. To access another data segment in devices with more than 64K bytes data space, the RAMPX in register in the I/O area has to be changed.
The X-pointer Register can either be left unchanged by the operation, or it can be post-incremented or pre-decremented. These features are especially suited for accessing arrays, tables, and Stack Pointer usage of the X-pointer Register. Note that only the low byte of the X-pointer is updated in devices with no more than 256 bytes data space. For such devices, the high byte of the pointer is not used by this instruction and can be used for other purposes. The RAMPX Register in the I/O area is updated in parts with more than 64K bytes data space or more than 64K bytes Program memory, and the incre- ment/decrement is added to the entire 24-bit address on such devices.
Not all variants of this instruction is available in all devices. Refer to the device specific instruction set summary.
In the Reduced Core tinyAVR the LD instruction can be used to achieve the same operation as LPM since the program memory is mapped to the data memory space.
The result of these combinations is undefined:
LD r26, X+ LD r27, X+ LD r26, -X LD r27, -X
Using the X-pointer:
Operation:
(i) Rd←(X)
(ii) Rd←(X) X←X+1
(iii) X←X-1 Rd←(X)
Syntax: Operands:
(i) LDRd,X 0≤d≤31
(ii) LD Rd, X+ 0≤d≤31
(iii) LD Rd, -X 0≤d≤31
Comment:
X: Unchanged
X: Post incremented X: Pre decremented
Program Counter:
PC ← PC + 1 PC ← PC + 1 PC ← PC + 1
0856I–AVR–07/10
87
16-bit Opcode:
(i)
1001
000d
dddd
1100
(ii)
1001
000d
dddd
1101
(iii)
1001
000d
dddd
1110
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
88 AVR Instruction Set
0856I–AVR–07/10
Example:
clr r27
ldi r26,$60 ld r0,X+ ld r1,X ldi r26,$63 ld r2,X
ld r3,–X
Words: 1(2bytes) Cycles:
Cycles XMEGA:
; Clear X high byte ;SetXlowbyteto ; Load r0 with data ; Load r1 with data ;SetXlowbyteto ; Load r2 with data ; Load r3 with data
(i) 1(2) (ii) 2 (iii) 3(2) (i) 1(1) (ii) 1(1) (iii) 2(1)
$60
space loc. $60(X post inc)
space loc. $61
$63
space loc. $63
space loc. $62(X pre dec)
Notes:
1. IF the LD instruction is accessing internal SRAM, one extra cycle is inserted.
2. LD instruction can load data from program memory since the flash is memory mapped. Loading data from the data memory
takes 1 clock cycle, and loading from the program memory takes 2 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
LD instruction with pre-decrement can load data from program memory since the flash is memory mapped. Loading data from the data memory takes 2 clock cycles, and loading from the program memory takes 3 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
AVR Instruction Set
0856I–AVR–07/10
89
LD (LDD) – Load Indirect from Data Space to Register using Index Y Description:
Loads one byte indirect with or without displacement from the data space to a register. For parts with SRAM, the data space consists of the Register File, I/O memory and internal SRAM (and external SRAM if applicable). For parts without SRAM, the data space consists of the Register File only. In some parts the Flash Memory has been mapped to the data space and can be read using this command. The EEPROM has a separate address space.
The data location is pointed to by the Y (16 bits) Pointer Register in the Register File. Memory access is limited to the cur- rent data segment of 64K bytes. To access another data segment in devices with more than 64K bytes data space, the RAMPY in register in the I/O area has to be changed.
The Y-pointer Register can either be left unchanged by the operation, or it can be post-incremented or pre-decremented. These features are especially suited for accessing arrays, tables, and Stack Pointer usage of the Y-pointer Register. Note that only the low byte of the Y-pointer is updated in devices with no more than 256 bytes data space. For such devices, the high byte of the pointer is not used by this instruction and can be used for other purposes. The RAMPY Register in the I/O area is updated in parts with more than 64K bytes data space or more than 64K bytes Program memory, and the incre- ment/decrement/displacement is added to the entire 24-bit address on such devices.
Not all variants of this instruction is available in all devices. Refer to the device specific instruction set summary.
In the Reduced Core tinyAVR the LD instruction can be used to achieve the same operation as LPM since the program memory is mapped to the data memory space.
The result of these combinations is undefined:
LD r28, Y+ LD r29, Y+ LD r28, -Y LD r29, -Y
Using the Y-pointer:
Operation:
(i) Rd←(Y)
(ii) Rd←(Y)
(iii) Y←Y-1
(iv) Rd ← (Y+q)
Syntax:
(i) LDRd,Y
(ii) LD Rd, Y+
(iii) LD Rd, -Y
(iv) LDD Rd, Y+q
Y←Y+1 Rd ← (Y)
Operands:
0≤d≤31
0≤d≤31
0≤d≤31
0 ≤ d ≤ 31, 0 ≤ q ≤ 63
Comment:
Y: Unchanged
Y: Post incremented
Y: Pre decremented
Y: Unchanged, q: Displacement
Program Counter:
PC←PC+1 PC←PC+1 PC←PC+1 PC←PC+1
90 AVR Instruction Set
0856I–AVR–07/10
(i)
1000
000d
dddd
1000
(ii)
1001
000d
dddd
1001
(iii)
1001
000d
dddd
1010
(iv)
10q0
qq0d
dddd
1qqq
–
–
–
–
–
–
–
–
16-bit Opcode:
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
clr r29
ldi r28,$60 ld r0,Y+ ld r1,Y ldi r28,$63 ld r2,Y
ld r3,-Y ldd r4,Y+2
Words: 1(2bytes) Cycles:
Cycles XMEGA:
; Clear Y high byte ;SetYlowbyteto ; Load r0 with data ; Load r1 with data ;SetYlowbyteto ; Load r2 with data ; Load r3 with data ; Load r4 with data
(i) 1(2) (ii) 2 (iii) 3(2) (i) 1(1) (ii) 1(1) (iii) 2(1) (iv) 2(1)
$60
space loc. $60(Y post inc)
space loc. $61
$63
space loc. $63
space loc. $62(Y pre dec)
space loc. $64
Notes:
1. IF the LD instruction is accessing internal SRAM, one extra cycle is inserted.
2. LD instruction can load data from program memory since the flash is memory mapped. Loading data from the data memory
takes 1 clock cycle, and loading from the program memory takes 2 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
LD instruction with pre-decrement can load data from program memory since the flash is memory mapped. Loading data from the data memory takes 2 clock cycles, and loading from the program memory takes 3 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
0856I–AVR–07/10
91
LD (LDD) – Load Indirect From Data Space to Register using Index Z Description:
Loads one byte indirect with or without displacement from the data space to a register. For parts with SRAM, the data space consists of the Register File, I/O memory and internal SRAM (and external SRAM if applicable). For parts without SRAM, the data space consists of the Register File only. In some parts the Flash Memory has been mapped to the data space and can be read using this command. The EEPROM has a separate address space.
The data location is pointed to by the Z (16 bits) Pointer Register in the Register File. Memory access is limited to the cur- rent data segment of 64K bytes. To access another data segment in devices with more than 64K bytes data space, the RAMPZ in register in the I/O area has to be changed.
The Z-pointer Register can either be left unchanged by the operation, or it can be post-incremented or pre-decremented. These features are especially suited for Stack Pointer usage of the Z-pointer Register, however because the Z-pointer Register can be used for indirect subroutine calls, indirect jumps and table lookup, it is often more convenient to use the X or Y-pointer as a dedicated Stack Pointer. Note that only the low byte of the Z-pointer is updated in devices with no more than 256 bytes data space. For such devices, the high byte of the pointer is not used by this instruction and can be used for other purposes. The RAMPZ Register in the I/O area is updated in parts with more than 64K bytes data space or more than 64K bytes Program memory, and the increment/decrement/displacement is added to the entire 24-bit address on such devices.
Not all variants of this instruction is available in all devices. Refer to the device specific instruction set summary.
In the Reduced Core tinyAVR the LD instruction can be used to achieve the same operation as LPM since the program memory is mapped to the data memory space.
For using the Z-pointer for table lookup in Program memory see the LPM and ELPM instructions. The result of these combinations is undefined:
LD r30, Z+ LD r31, Z+ LD r30, -Z LD r31, -Z
Using the Z-pointer:
Operation:
(i) Rd ← (Z)
(ii) Rd ← (Z)
(iii) Z ← Z -1
(iv) Rd ← (Z+q)
Syntax:
(i) LD Rd, Z
(ii) LD Rd, Z+
(iii) LD Rd, -Z
(iv) LDD Rd, Z+q
Comment:
Z: Unchanged Z←Z+1 Z: Post increment Rd←(Z) Z: Pre decrement
Z: Unchanged, q: Displacement
Operands: Program Counter:
0≤d≤31 PC←PC+1 0≤d≤31 PC←PC+1 0≤d≤31 PC ← PC + 1 0≤d≤31,0≤q≤63 PC ← PC + 1
92 AVR Instruction Set
0856I–AVR–07/10
(i)
1000
000d
dddd
0000
(ii)
1001
000d
dddd
0001
(iii)
1001
000d
dddd
0010
(iv)
10q0
qq0d
dddd
0qqq
–
–
–
–
–
–
–
–
16-bit Opcode:
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
clr r31
ldi r30,$60 ld r0,Z+ ld r1,Z ldi r30,$63 ld r2,Z
ld r3,-Z ldd r4,Z+2
Words: 1(2bytes) Cycles:
Cycles XMEGA:
; Clear Z high byte ;SetZlowbyteto ; Load r0 with data ; Load r1 with data ;SetZlowbyteto ; Load r2 with data ; Load r3 with data ; Load r4 with data
(i) 1(2) (ii) 2 (iii) 3(2) (i) 1(1) (ii) 1(1) (iii) 2(1) (iv) 2(1)
$60
space loc. $60(Z post inc)
space loc. $61
$63
space loc. $63
space loc. $62(Z pre dec)
space loc. $64
Notes:
1. IF the LD instruction is accessing internal SRAM, one extra cycle is inserted.
2. LD instruction can load data from program memory since the flash is memory mapped. Loading data from the data memory
takes 1 clock cycle, and loading from the program memory takes 2 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
LD instruction with pre-decrement can load data from program memory since the flash is memory mapped. Loading data from the data memory takes 2 clock cycles, and loading from the program memory takes 3 clock cycles. But if an interrupt occur (before the last clock cycle) no additional clock cycles is necessary when loading from the program memory. Hence, the instruction takes only 1 clock cycle to execute.
0856I–AVR–07/10
93
LDI – Load Immediate Description:
Loads an 8 bit constant directly to register 16 to 31.
Operation:
(i) Rd ← K
Syntax: Operands:
(i) LDI Rd,K 16 ≤ d ≤ 31, 0 ≤ K ≤ 255 16-bit Opcode:
Program Counter:
PC ← PC + 1
1110
KKKK
dddd
KKKK
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
clr ldi lpm
r31 r30,$F0
; Clear Z high byte
; Set Z low byte to $F0
; Load constant from Program
; memory pointed to by Z
Words: 1(2bytes) Cycles: 1
94
AVR Instruction Set
0856I–AVR–07/10
1001
000d
dddd
0000
kkkk
kkkk
kkkk
kkkk
–
–
–
–
–
–
–
–
LDS – Load Direct from Data Space Description:
Loads one byte from the data space to a register. For parts with SRAM, the data space consists of the Register File, I/O memory and internal SRAM (and external SRAM if applicable). For parts without SRAM, the data space consists of the reg- ister file only. The EEPROM has a separate address space.
A 16-bit address must be supplied. Memory access is limited to the current data segment of 64K bytes. The LDS instruction uses the RAMPD Register to access memory above 64K bytes. To access another data segment in devices with more than 64K bytes data space, the RAMPD in register in the I/O area has to be changed.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
AVR Instruction Set
Operation:
(i) Rd ← (k)
Syntax: Operands:
(i) LDS Rd,k 0 ≤ d ≤ 31, 0 ≤ k ≤ 65535 32-bit Opcode:
Program Counter:
PC ← PC + 2
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
lds r2,$FF00 add r2,r1 sts $FF00,r2
Words: 2(4bytes) Cycles:
Cycles XMEGA:
; Load r2 with the contents of data space location $FF00
; add r1 to r2
; Write back
2
2 If the LDS instruction is accessing internal SRAM, one extra cycle is inserted.
0856I–AVR–07/10
95
LDS (16-bit) – Load Direct from Data Space Description:
Loads one byte from the data space to a register. For parts with SRAM, the data space consists of the Register File, I/O memory and internal SRAM (and external SRAM if applicable). For parts without SRAM, the data space consists of the reg- ister file only. In some parts the Flash memory has been mapped to the data space and can be read using this command. The EEPROM has a separate address space.
A 7-bit address must be supplied. The address given in the instruction is coded to a data space address as follows: ADDR[7:0] = (INST[8], INST[8], INST[10], INST[9], INST[3], INST[2], INST[1], INST[0])
Memory access is limited to the address range 0x40..0xbf.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) Rd ← (k)
Syntax: Operands:
(i) LDS Rd,k 16 ≤ d ≤ 31, 0 ≤ k ≤ 127 16-bit Opcode:
Program Counter:
PC ← PC + 1
1010
0kkk
dddd
kkkk
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
Words: Cycles: Note:
1(2bytes)
1
Registers r0..r15 are remapped to r16..r31.
lds r16,$00 add r16,r17 sts $00,r16
; Load r16 with the contents of data space location $00
; add r17 to r16
; Write result to the same address it was fetched from
96
AVR Instruction Set
0856I–AVR–07/10
(i)
1001
0101
1100
1000
(ii)
1001
000d
dddd
0100
(iii)
1001
000d
dddd
0101
–
–
–
–
–
–
–
–
LPM – Load Program Memory Description:
Loads one byte pointed to by the Z-register into the destination register Rd. This instruction features a 100% space effec- tive constant initialization or constant data fetch. The Program memory is organized in 16-bit words while the Z-pointer is a byte address. Thus, the least significant bit of the Z-pointer selects either low byte (ZLSB = 0) or high byte (ZLSB = 1). This instruction can address the first 64K bytes (32K words) of Program memory. The Z-pointer Register can either be left unchanged by the operation, or it can be incremented. The incrementation does not apply to the RAMPZ Register.
Devices with Self-Programming capability can use the LPM instruction to read the Fuse and Lock bit values. Refer to the device documentation for a detailed description.
The LPM instruction is not available in all devices. Refer to the device specific instruction set summary. The result of these combinations is undefined:
AVR Instruction Set
LPM r30, Z+ LPM r31, Z+
Operation:
(i) R0←(Z)
(ii) Rd←(Z)
(iii) Rd←(Z)
Syntax:
(i) LPM
(ii) LPM Rd, Z
(iii) LPM Rd, Z+
16-bit Opcode:
Z←Z+1 Operands:
None, R0 implied 0 ≤ d ≤ 31
0 ≤ d ≤ 31
Comment:
Z: Unchanged, R0 implied destination register Z: Unchanged
Z: Post incremented
Program Counter:
PC ← PC + 1 PC ← PC + 1 PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
ldi ZH, high(Table_1<<1); Initialize Z-pointer ldi ZL, low(Table_1<<1)
lpm r16, Z
...
Table_1:
.dw 0x5876
...
; Load constant from Program
; Memory pointed to by Z (r31:r30)
; 0x76 is addresses when ZLSB = 0 ; 0x58 is addresses when ZLSB = 1
0856I–AVR–07/10
97
Words: 1(2bytes) Cycles: 3
98 AVR Instruction Set
0856I–AVR–07/10
C
b7 - - - - - - - - - - - - - - - - - - b0
0000
11dd
dddd
dddd
–
–
⇔
⇔
⇔
⇔
⇔
⇔
AVR Instruction Set
LSL – Logical Shift Left Description:
Shifts all bits in Rd one place to the left. Bit 0 is cleared. Bit 7 is loaded into the C Flag of the SREG. This operation effec- tively multiplies signed and unsigned values by two.
(i)
(i)
← ←←0
Syntax: Operands:
LSL Rd 0 ≤ d ≤ 31 16-bit Opcode: (see ADD Rd,Rd)
Program Counter:
PC ← PC + 1
Operation:
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3
S: N ⊕ V, For signed tests.
V: N⊕C(ForNandCaftertheshift)
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd7
Set if, before the shift, the MSB of Rd was set; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
Words: 1(2bytes) Cycles: 1
add r0,r4 lsl r0
; Add r4 to r0
; Multiply r0 by 2
0856I–AVR–07/10
99
LSR – Logical Shift Right Description:
Shifts all bits in Rd one place to the right. Bit 7 is cleared. Bit 0 is loaded into the C Flag of the SREG. This operation effec- tively divides an unsigned value by two. The C Flag can be used to round the result.
Operation:
→ 0→→
Syntax: Operands:
(i) LSR Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
b7 - - - - - - - - - - - - - - - - - - b0
C
1001
010d
dddd
0110
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests.
V: N⊕C(ForNandCaftertheshift)
N: 0
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd0
Set if, before the shift, the LSB of Rd was set; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
add r0,r4 ; Add r4 to r0 lsr r0 ; Divide r0 by 2
Words: 1(2bytes) Cycles: 1
–
–
–
⇔
⇔
0
⇔
⇔
100 AVR Instruction Set
0856I–AVR–07/10
0010
11rd
dddd
rrrr
–
–
–
–
–
–
–
–
MOV – Copy Register Description:
This instruction makes a copy of one register into another. The source register Rr is left unchanged, while the destination register Rd is loaded with a copy of Rr.
Operation:
(i) Rd ← Rr
Syntax: Operands:
(i) MOV Rd,Rr 0 ≤ d ≤ 31, 0 ≤ r ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
check: cpi ...
r16,$11 ;Comparer16to$11
mov r16,r0 ; Copy r0 to r16 call check ; Call subroutine ...
ret ; Return from subroutine
Words: 1(2bytes) Cycles: 1
0856I–AVR–07/10
101
MOVW – Copy Register Word Description:
This instruction makes a copy of one register pair into another register pair. The source register pair Rr+1:Rr is left unchanged, while the destination register pair Rd+1:Rd is loaded with a copy of Rr + 1:Rr.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) Rd+1:Rd ← Rr+1:Rr
Syntax: Operands:
(i) MOVW Rd+1:Rd,Rr+1Rrd ∈ {0,2,...,30}, r ∈ {0,2,...,30} 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Program Counter:
PC ← PC + 1
0000
0001
dddd
rrrr
–
–
–
–
–
–
–
–
Example:
check: cpi ...
r16,$11
movw r17:16,r1:r0 call check
...
; Copy r1:r0 to r17:r16
; Call subroutine
; Compare r16 to $11
; Compare r17 to $32
; Return from subroutine
cpi r17,$32 ...
ret
Words: 1(2bytes) Cycles: 1
102 AVR Instruction Set
0856I–AVR–07/10
Product High
Product Low
Multiplicand
Multiplier
1001
11rd
dddd
rrrr
–
–
–
–
–
–
⇔
⇔
MUL – Multiply Unsigned Description:
This instruction performs 8-bit × 8-bit → 16-bit unsigned multiplication.
Rd Rr R1 R0
×→
8 8 16
The multiplicand Rd and the multiplier Rr are two registers containing unsigned numbers. The 16-bit unsigned product is placed in R1 (high byte) and R0 (low byte). Note that if the multiplicand or the multiplier is selected from R0 or R1 the result will overwrite those after multiplication.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
AVR Instruction Set
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) MUL Rd,Rr
16-bit Opcode:
(unsigned ← unsigned × unsigned) Operands:
0 ≤ d ≤ 31, 0 ≤ r ≤ 31
Program Counter:
PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R15
Set if bit 15 of the result is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
Example:
mul r5,r4 movw r4,r0
Words: 1(2bytes) Cycles: 2
; Multiply unsigned r5 and r4
; Copy result back in r5:r4
0856I–AVR–07/10
103
MULS – Multiply Signed Description:
This instruction performs 8-bit × 8-bit → 16-bit signed multiplication.
Rd Rr R1 R0
×→
8 8 16
The multiplicand Rd and the multiplier Rr are two registers containing signed numbers. The 16-bit signed product is placed in R1 (high byte) and R0 (low byte).
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Product High
Product Low
Multiplicand
Multiplier
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) MULS Rd,Rr
16-bit Opcode:
(signed ← signed × signed) Operands:
16 ≤ d ≤ 31, 16 ≤ r ≤ 31
Program Counter:
PC ← PC + 1
0000
0010
dddd
rrrr
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R15
Set if bit 15 of the result is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
Example:
muls r21,r20 ; Multiply signed r21 and r20 movw r20,r0 ; Copy result back in r21:r20
Words: 1(2bytes) Cycles: 2
–
–
–
–
–
–
⇔
⇔
104 AVR Instruction Set
0856I–AVR–07/10
Product High
Product Low
Multiplicand
Multiplier
0000
0011
0ddd
0rrr
–
–
–
–
–
–
⇔
⇔
MULSU – Multiply Signed with Unsigned Description:
This instruction performs 8-bit × 8-bit → 16-bit multiplication of a signed and an unsigned number. Rd Rr R1 R0
×→
8 8 16
The multiplicand Rd and the multiplier Rr are two registers. The multiplicand Rd is a signed number, and the multiplier Rr is unsigned. The 16-bit signed product is placed in R1 (high byte) and R0 (low byte).
This instruction is not available in all devices. Refer to the device specific instruction set summary.
AVR Instruction Set
Operation:
(i) R1:R0 ← Rd × Rr Syntax:
(i) MULSU Rd,Rr
16-bit Opcode:
(signed ← signed × unsigned) Operands:
16 ≤ d ≤ 23, 16 ≤ r ≤ 23
Program Counter:
PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: R15
Set if bit 15 of the result is set; cleared otherwise.
Z: R15 •R14 •R13 •R12 •R11 •R10 •R9 •R8 •R7• R6• R5• R4• R3• R2 •R1• R0 Set if the result is $0000; cleared otherwise.
R (Result) equals R1,R0 after the operation.
Example:
;****************************************************************************** ;* DESCRIPTION
;*Signed multiply of two 16-bit numbers with 32-bit result.
;* USAGE
;*r19:r18:r17:r16 = r23:r22 * r21:r20 ;****************************************************************************** muls16x16_32:
clrr2
mulsr23, r21; (signed)ah * (signed)bh
0856I–AVR–07/10
105
movwr19:r18, r1:r0
mulr22, r20; al * bl
movwr17:r16, r1:r0
mulsur23, r20; (signed)ah * bl
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
mulsur21, r22; (signed)bh * al
sbcr19, r2
addr17, r0
adcr18, r1
adcr19, r2
ret
Words: 1(2bytes) Cycles: 2
106 AVR Instruction Set
0856I–AVR–07/10
1001
010d
dddd
0001
–
–
⇔
⇔
⇔
⇔
⇔
⇔
NEG – Two’s Complement Description:
Replaces the contents of register Rd with its two’s complement; the value $80 is left unchanged.
Operation:
(i) Rd ← $00 - Rd
Syntax: Operands:
(i) NEG Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: R3+Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N⊕V
For signed tests.
V: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if there is a two’s complement overflow from the implied subtraction from zero; cleared otherwise. A two’s com- plement overflow will occur if and only if the contents of the Register after operation (Result) is $80.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; Cleared otherwise.
C: R7+R6+R5+R4+R3+R2+R1+R0
Set if there is a borrow in the implied subtraction from zero; cleared otherwise. The C Flag will be set in all cases except when the contents of Register after operation is $00.
R (Result) equals Rd after the operation.
Example:
neg positive: nop
Words: 1(2bytes) Cycles: 1
r11
sub r11,r0 brpl positive
; Subtract r0 from r11
; Branch if result positive
; Take two’s complement of r11 ;Branchdestination(donothing)
0856I–AVR–07/10
107
NOP – No Operation Description:
This instruction performs a single cycle No Operation.
Operation:
(i) No
Syntax: Operands:
(i) NOP None
16-bit Opcode:
Program Counter:
PC ← PC + 1
0000
0000
0000
0000
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
Words: 1(2bytes) Cycles: 1
clr r16
ser r17
out $18,r16 nop
out $18,r17
; Clear r16
; Set r17
; Write zeros to Port B
; Wait (do nothing)
; Write ones to Port B
108 AVR Instruction Set
0856I–AVR–07/10
0010
10rd
dddd
rrrr
–
–
–
⇔
0
⇔
⇔
–
OR – Logical OR Description:
Performs the logical OR between the contents of register Rd and register Rr and places the result in the destination register Rd.
Operation:
(i) Rd←RdvRr
Syntax: Operands: Program Counter:
(i) ORRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
AVR Instruction Set
Example:
ok: nop
Words: 1(2bytes) Cycles: 1
or r15,r16 bst r15,6 brts ok
...
; Do bitwise or between registers
; Store bit 6 of r15 in T Flag
; Branch if T Flag set
; Branch destination (do nothing)
0856I–AVR–07/10
109
ORI – Logical OR with Immediate Description:
Performs the logical OR between the contents of register Rd and a constant and places the result in the destination register Rd.
Operation:
(i) Rd ← Rd v K Syntax:
(i) ORI Rd,K
16-bit Opcode:
Operands:
16 ≤ d ≤ 31, 0 ≤ K ≤ 255
Program Counter:
PC ← PC + 1
0110
KKKK
dddd
KKKK
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
ori r16,$F0 ; Set high nibble of r16 ori r17,1 ; Set bit 0 of r17
Words: 1(2bytes) Cycles: 1
–
–
–
⇔
0
⇔
⇔
–
110 AVR Instruction Set
0856I–AVR–07/10
1011
1AAr
rrrr
AAAA
–
–
–
–
–
–
–
–
OUT – Store Register to I/O Location Description:
Stores data from register Rr in the Register File to I/O Space (Ports, Timers, Configuration Registers etc.).
Operation:
(i) I/O(A) ← Rr
Syntax: Operands:
(i) OUT A,Rr 0 ≤ r ≤ 31, 0 ≤ A ≤ 63 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
Words: 1(2bytes) Cycles: 1
clr r16
ser r17
out $18,r16 nop
out $18,r17
; Clear r16
; Set r17
; Write zeros to Port B
; Wait (do nothing)
; Write ones to Port B
0856I–AVR–07/10
111
POP – Pop Register from Stack
Description:
This instruction loads register Rd with a byte from the STACK. The Stack Pointer is pre-incremented by 1 before the POP. This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) Rd ← STACK
Syntax: Operands:
(i) POP Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
Stack:
SP ← SP + 1
1001
000d
dddd
1111
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
routine: push
push r13
...
pop r13 pop r14 ret
Words: 1(2bytes) Cycles: 2
call routine ...
; Call subroutine
r14
; Save r14 on
; Save r13 on
; Restore r13
; Restore r14
; Return from
the Stack
the Stack
subroutine
112 AVR Instruction Set
0856I–AVR–07/10
1001
001d
dddd
1111
–
–
–
–
–
–
–
–
PUSH – Push Register on Stack Description:
This instruction stores the contents of register Rr on the STACK. The Stack Pointer is post-decremented by 1 after the PUSH.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) STACK ← Rr
Syntax: Operands:
(i) PUSH Rr 0 ≤ r ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
Stack:
SP ← SP - 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
... routine: push push
r14 r13
r13 r14
; Save r14 on
; Save r13 on
the Stack
the Stack
Words : Cycles : Cycles XMEGA:
call
routine
; Call subroutine
...
pop
pop
ret
; Restore r13
; Restore r14
; Return from subroutine
1 (2 bytes) 2
1
0856I–AVR–07/10
113
RCALL – Relative Call to Subroutine Description:
Relative call to an address within PC - 2K + 1 and PC + 2K (words). The return address (the instruction after the RCALL) is stored onto the Stack. See also CALL. For AVR microcontrollers with Program memory not exceeding 4K words (8K bytes) this instruction can address the entire memory from every address location. The Stack Pointer uses a post-decrement scheme during RCALL.
Operation:
(i) PC←PC+k+1
(ii) PC←PC+k+1
Syntax:
(i) RCALL k
(ii) RCALL k
16-bit Opcode:
Devices with 16 bits PC, 128K bytes Program memory maximum. Devices with 22 bits PC, 8M bytes Program memory maximum.
routine: push ...
r14
; Call subroutine
; Save r14 on the Stack
; Restore r14
; Return from subroutine
1 (2 bytes)
3, devices with 16 bit PC 4, devices with 22 bit PC 2, devices with 16 bit PC 3, devices with 22 bit PC
Words : Cycles :
Cycles XMEGA:
Cycles Reduced Core tinyAVR:4
rcall routine ...
pop r14 ret
Operands:
-2K ≤ k < 2K -2K ≤ k < 2K
Program Counter:
PC ← PC + k + 1 PC ← PC + k + 1
Stack:
STACK ← PC + 1
SP ← SP - 2 (2 bytes, 16 bits)
STACK ← PC + 1
SP ← SP - 3 (3 bytes, 22 bits)
1101
kkkk
kkkk
kkkk
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
114 AVR Instruction Set
0856I–AVR–07/10
1001
0101
0000
1000
–
–
–
–
–
–
–
–
RET – Return from Subroutine Description:
Returns from subroutine. The return address is loaded from the STACK. The Stack Pointer uses a pre-increment scheme during RET.
Operation:
(i) PC(15:0) ← STACKDevices with 16 bits PC, 128K bytes Program memory maximum.
(ii) PC(21:0) ← STACKDevices with 22 bits PC, 8M bytes Program memory maximum.
Syntax: Operands:
(i) RET None
(ii) RET None
16-bit Opcode:
Program Counter:
See Operation See Operation
Stack:
SP←SP + 2, (2bytes,16 bits) SP←SP + 3, (3bytes,22 bits)
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
routine: push
...
r14
pop r14 ret
Words: 1 (2 bytes)
Cycles: 4 devices with 16-bit PC
5 devices with 22-bit PC
call routine ...
; Call subroutine
; Save r14 on the Stack
; Restore r14
; Return from subroutine
0856I–AVR–07/10
115
RETI – Return from Interrupt
Description:
Returns from interrupt. The return address is loaded from the STACK and the Global Interrupt Flag is set.
Note that the Status Register is not automatically stored when entering an interrupt routine, and it is not restored when returning from an interrupt routine. This must be handled by the application program. The Stack Pointer uses a pre-incre- ment scheme during RETI.
Operation:
(i) PC(15:0) ← STACKDevices with 16 bits PC, 128K bytes Program memory maximum.
(ii) PC(21:0) ← STACKDevices with 22 bits PC, 8M bytes Program memory maximum.
Syntax: Operands:
(i) RETI None
(ii) RETI None
16-bit Opcode:
Program Counter:
See Operation See Operation
Stack
SP ← SP + 2 (2 bytes, 16 bits) SP ← SP + 3 (3 bytes, 22 bits)
1001
0101
0001
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
1
–
–
–
–
–
–
–
I: 1
The I Flag is set.
Example:
... extint: push
... pop reti
r0
r0
; Save r0 on the Stack
; Restore r0
; Return and enable interrupts
Words: 1 (2 bytes)
Cycles: 4 devices with 16-bit PC
5 devices with 22-bit PC
116 AVR Instruction Set
0856I–AVR–07/10
1100
kkkk
kkkk
kkkk
–
–
–
–
–
–
–
–
RJMP – Relative Jump Description:
Relative jump to an address within PC - 2K +1 and PC + 2K (words). For AVR microcontrollers with Program memory not exceeding 4K words (8K bytes) this instruction can address the entire memory from every address location. See also JMP.
Operation:
(i) PC ← PC + k + 1
Syntax: Operands:
(i) RJMP k -2K ≤ k < 2K 16-bit Opcode:
Program Counter:
PC ← PC + k + 1
Stack
Unchanged
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
error: add
inc r16
ok: nop
Words: 1(2bytes) Cycles: 2
cpi r16,$42 brne error rjmp ok
; Compare r16 to $42
; Branch if r16 <> $42
; Unconditional branch
; Add r17 to r16
; Increment r16
; Destination for rjmp (do nothing)
r16,r17
0856I–AVR–07/10
117
ROL – Rotate Left trough Carry Description:
Shifts all bits in Rd one place to the left. The C Flag is shifted into bit 0 of Rd. Bit 7 is shifted into the C Flag. This operation, combined with LSL, effectively multiplies multi-byte signed and unsigned values by two.
(i)
0 ≤ d ≤ 31
C
̈
←
Example:
oneenc:
lsl r18 rol r19 brcs oneenc …
nop
; Multiply r19:r18 by two
; r19:r18 is a signed or unsigned two-byte integer
; Branch if carry set
;Branchdestination(donothing)
Operation:
Syntax:
Operands:
Program Counter:
PC ← PC + 1
Words: 1(2bytes) Cycles: 1
←
b7 – – – – – – – – – – – – – – – – – – b0
ROL Rd
16-bit Opcode: (see ADC Rd,Rd)
C
0001
11dd
dddd
dddd
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: Rd3
S: N ⊕ V, For signed tests.
V: N⊕C(ForNandCaftertheshift)
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd7
Set if, before the shift, the MSB of Rd was set; cleared otherwise.
R (Result) equals Rd after the operation.
–
–
⇔
⇔
⇔
⇔
⇔
⇔
118 AVR Instruction Set
0856I–AVR–07/10
C
b7 – – – – – – – – – – – – – – – – – – b0
C
1001
010d
dddd
0111
–
–
–
⇔
⇔
⇔
⇔
⇔
ROR – Rotate Right through Carry Description:
Shifts all bits in Rd one place to the right. The C Flag is shifted into bit 7 of Rd. Bit 0 is shifted into the C Flag. This opera- tion, combined with ASR, effectively divides multi-byte signed values by two. Combined with LSR it effectively divides multi- byte unsigned values by two. The Carry Flag can be used to round the result.
AVR Instruction Set
(i)
Operation:
→ →→
Syntax: Operands:
ROR Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests.
V: N⊕C(ForNandCaftertheshift)
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd0
Set if, before the shift, the LSB of Rd was set; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
zeroenc1:
lsr r19
ror r18
brcc zeroenc1 asr r17
ror r16
brcc zeroenc2 …
nop
…
; Divide r19:r18 by two
; r19:r18 is an unsigned two-byte integer
; Branch if carry cleared
; Divide r17:r16 by two
; r17:r16 is a signed two-byte integer
; Branch if carry cleared
;Branchdestination(donothing)
0856I–AVR–07/10
119
zeroenc1: nop ;Branchdestination(donothing)
Words: 1(2bytes) Cycles: 1
120 AVR Instruction Set
0856I–AVR–07/10
0000
10rd
dddd
rrrr
–
–
⇔
⇔
⇔
⇔
⇔
⇔
AVR Instruction Set
SBC – Subtract with Carry Description:
Subtracts two registers and subtracts with the C Flag and places the result in the destination register Rd.
Operation:
(i) Rd←Rd-Rr-C
Syntax: Operands: Program Counter:
(i) SBCRd,Rr 0≤d≤31,0≤r≤31 PC←PC+1 16-bit Opcode:
Status Register and Boolean Formula: ITHSVNZC
H: Rd3•Rr3+Rr3•R3+R3•Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7 •Rr7• R7 +Rd7 •Rr7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0• Z
Previous value remains unchanged when the result is zero; cleared otherwise.
C: Rd7 •Rr7+ Rr7 •R7 +R7 •Rd7
Set if the absolute value of the contents of Rr plus previous carry is larger than the absolute value of the Rd; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
sub r2,r0 sbc r3,r1
Words: 1(2bytes) Cycles: 1
; Subtract r1:r0 from r3:r2
; Subtract low byte
; Subtract with carry high byte
0856I–AVR–07/10
121
SBCI – Subtract Immediate with Carry Description:
Subtracts a constant from a register and subtracts with the C Flag and places the result in the destination register Rd.
Operation:
(i) Rd←Rd-K-C
Syntax: Operands: Program Counter:
(i) SBCIRd,K 16≤d≤31,0≤K≤255 PC←PC+1 16-bit Opcode:
Status Register and Boolean Formula: ITHSVNZC
H: Rd3•K3+K3•R3+R3•Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7 •K7• R7 +Rd7 •K7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0• Z
Previous value remains unchanged when the result is zero; cleared otherwise.
C: Rd7 •K7+ K7 • R7 +R7 •Rd7
Set if the absolute value of the constant plus previous carry is larger than the absolute value of Rd; cleared other- wise.
R (Result) equals Rd after the operation.
0100
KKKK
dddd
KKKK
–
–
⇔
⇔
⇔
⇔
⇔
⇔
Example:
Words: 1(2bytes) Cycles: 1
; Subtract $4F23 from r17:r16
; Subtract low byte
; Subtract with carry high byte
subi r16,$23 sbci r17,$4F
122 AVR Instruction Set
0856I–AVR–07/10
1001
1010
AAAA
Abbb
–
–
–
–
–
–
–
–
SBI – Set Bit in I/O Register Description:
Sets a specified bit in an I/O Register. This instruction operates on the lower 32 I/O Registers – addresses 0-31.
Operation:
(i) I/O(A,b) ← 1
Syntax: Operands:
(i) SBI A,b 0 ≤ A ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
out $1E,r0 sbi $1C,0 in r1,$1D
; Write EEPROM address
; Set read bit in EECR
; Read EEPROM data
Words :
Cycles :
Cycles XMEGA:
Cycles Reduced Core tinyAVR:1
1 (2 bytes) 2
1
0856I–AVR–07/10
123
SBIC – Skip if Bit in I/O Register is Cleared Description:
This instruction tests a single bit in an I/O Register and skips the next instruction if the bit is cleared. This instruction oper- ates on the lower 32 I/O Registers – addresses 0-31.
Operation:
(i) If I/O(A,b) = 0 then PC ← PC + 2 (or 3) else PC ← PC + 1
Syntax: Operands:
(i) SBIC A,b 0 ≤ A ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1, Condition false – no skip PC ← PC + 2, Skip a one word instruction PC ← PC + 3, Skip a two word instruction
1001
1001
AAAA
Abbb
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
e2wait: sbic $1C,1 rjmp e2wait
nop
; Skip next inst. if EEWE cleared
; EEPROM write not finished
; Continue (do nothing)
Words : Cycles :
Cycles XMEGA:
1 (2 bytes)
1 if condition is false (no skip)
2 if condition is true (skip is executed) and the instruction skipped is 1 word 3 if condition is true (skip is executed) and the instruction skipped is 2 words 2 if condition is false (no skip)
3 if condition is true (skip is executed) and the instruction skipped is 1 word 4 if condition is true (skip is executed) and the instruction skipped is 2 words
124 AVR Instruction Set
0856I–AVR–07/10
1001
1011
AAAA
Abbb
–
–
–
–
–
–
–
–
SBIS – Skip if Bit in I/O Register is Set Description:
This instruction tests a single bit in an I/O Register and skips the next instruction if the bit is set. This instruction operates on the lower 32 I/O Registers – addresses 0-31.
Operation:
(i) If I/O(A,b) = 1 then PC ← PC + 2 (or 3) else PC ← PC + 1
Syntax: Operands:
(i) SBIS A,b 0 ≤ A ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1, Condition false – no skip PC ← PC + 2, Skip a one word instruction PC ← PC + 3, Skip a two word instruction
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
waitset: sbis $10,0 rjmp waitset
; Skip next inst. if bit 0 in Port D set
; Bit not set
; Continue (do nothing)
1 (2 bytes)
1 if condition is false (no skip)
2 if condition is true (skip is executed) and the instruction skipped is 1 word 3 if condition is true (skip is executed) and the instruction skipped is 2 words 2 if condition is false (no skip)
3 if condition is true (skip is executed) and the instruction skipped is 1 word 4 if condition is true (skip is executed) and the instruction skipped is 2 words
Words Cycles
: :
Cycles XMEGA:
nop
0856I–AVR–07/10
125
SBIW – Subtract Immediate from Word Description:
Subtracts an immediate value (0-63) from a register pair and places the result in the register pair. This instruction operates on the upper four register pairs, and is well suited for operations on the Pointer Registers.
This instruction is not available in all devices. Refer to the device specific instruction set summary.
Operation:
(i) Rd+1:Rd ← Rd+1:Rd – K Syntax: Operands:
(i) SBIWRd+1:Rd,K d∈{24,26,28,30},0≤K≤63 16-bit Opcode:
Program Counter:
PC←PC+1
1001
0111
KKdd
KKKK
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: Rdh7 •R15
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R15
Set if MSB of the result is set; cleared otherwise.
Z: R15• R14 •R13 •R12 •R11• R10• R9• R8• R7• R6 •R5• R4• R3 •R2• R1• R0 Set if the result is $0000; cleared otherwise.
C: R15• Rdh7
Set if the absolute value of K is larger than the absolute value of Rd; cleared otherwise.
R (Result) equals Rdh:Rdl after the operation (Rdh7-Rdh0 = R15-R8, Rdl7-Rdl0=R7-R0).
Example:
sbiw r25:r24,1 ; Subtract 1 from r25:r24
sbiw YH:YL,63 ; Subtract 63 from the Y-pointer(r29:r28)
Words: 1(2bytes) Cycles: 2
–
–
–
⇔
⇔
⇔
⇔
⇔
126 AVR Instruction Set
0856I–AVR–07/10
0110
KKKK
dddd
KKKK
–
–
–
⇔
0
⇔
⇔
–
SBR – Set Bits in Register Description:
Sets specified bits in register Rd. Performs the logical ORI between the contents of register Rd and a constant mask K and places the result in the destination register Rd.
AVR Instruction Set
Operation:
(i) Rd ← Rd v K
Syntax: Operands:
(i) SBR Rd,K 16 ≤ d ≤ 31, 0 ≤ K ≤ 255 16-bit Opcode:
Program Counter:
PC ← PC + 1
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
sbr r16,3 ;Setbits0and1inr16 sbr r17,$F0 ; Set 4 MSB in r17
Words: 1(2bytes) Cycles: 1
0856I–AVR–07/10
127
SBRC – Skip if Bit in Register is Cleared Description:
This instruction tests a single bit in a register and skips the next instruction if the bit is cleared.
Operation:
(i) If Rr(b) = 0 then PC ← PC + 2 (or 3) else PC ← PC + 1 Syntax: Operands:
(i) SBRC Rr,b 0 ≤ r ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1, Condition false – no skip PC ← PC + 2, Skip a one word instruction PC ← PC + 3, Skip a two word instruction
1111
110r
rrrr
0bbb
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
sub r0,r1 sbrc r0,7 sub r0,r1 nop
; Subtract r1 from r0
; Skip if bit 7 in r0 cleared
; Only executed if bit 7 in r0 not cleared
; Continue (do nothing)
Words: 1(2bytes)
Cycles: 1 if condition is false (no skip)
2 if condition is true (skip is executed) and the instruction skipped is 1 word 3 if condition is true (skip is executed) and the instruction skipped is 2 words
128 AVR Instruction Set
0856I–AVR–07/10
1111
111r
rrrr
0bbb
–
–
–
–
–
–
–
–
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
sub r0,r1 ; Subtract r1 from r0
sbrs r0,7 ;Skipifbit7inr0set
neg r0 ; Only executed if bit 7 in r0 not set nop ; Continue (do nothing)
Words: 1(2bytes)
Cycles: 1 if condition is false (no skip)
2 if condition is true (skip is executed) and the instruction skipped is 1 word 3 if condition is true (skip is executed) and the instruction skipped is 2 words
AVR Instruction Set
SBRS – Skip if Bit in Register is Set Description:
This instruction tests a single bit in a register and skips the next instruction if the bit is set.
Operation:
(i) If Rr(b) = 1 then PC ← PC + 2 (or 3) else PC ← PC + 1 Syntax: Operands:
(i) SBRS Rr,b 0 ≤ r ≤ 31, 0 ≤ b ≤ 7 16-bit Opcode:
Program Counter:
PC ← PC + 1, Condition false – no skip PC ← PC + 2, Skip a one word instruction PC ← PC + 3, Skip a two word instruction
0856I–AVR–07/10
129
SEC – Set Carry Flag Description:
Sets the Carry Flag (C) in SREG (Status Register).
Operation:
(i) C←1
Syntax: Operands:
(i) SEC None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
0000
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
C: 1
Carry Flag set
Example:
Words: 1(2bytes) Cycles: 1
–
–
–
–
–
–
–
1
sec ; Set Carry Flag
adc r0,r1
; r0=r0+r1+1
130 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0101
1000
–
–
1
–
–
–
–
–
Status Register (SREG) and Boolean Formula: ITHSVNZC
H: 1
Half Carry Flag set
Example:
seh ; Set Half Carry Flag
Words: 1(2bytes) Cycles: 1
AVR Instruction Set
SEH – Set Half Carry Flag Description:
Sets the Half Carry (H) in SREG (Status Register).
Operation:
(i) H←1
Syntax: Operands:
(i) SEH None
16-bit Opcode:
Program Counter:
PC ← PC + 1
0856I–AVR–07/10
131
SEI – Set Global Interrupt Flag Description:
Sets the Global Interrupt Flag (I) in SREG (Status Register). The instruction following SEI will be executed before any pend- ing interrupts.
Operation:
(i) I←1
Syntax: Operands:
(i) SEI None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
0111
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
I: 1
Global Interrupt Flag set
Example:
sei ; set global interrupt enable
sleep ; enter sleep, waiting for interrupt
; note: will enter sleep before any pending interrupt(s)
Words: 1(2bytes) Cycles: 1
1
–
–
–
–
–
–
–
132 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0010
1000
–
–
–
–
–
1
–
–
SEN – Set Negative Flag Description:
Sets the Negative Flag (N) in SREG (Status Register).
Operation:
(i) N←1
Syntax: Operands:
(i) SEN None
16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
N: 1
Negative Flag set
Example:
Words: 1(2bytes) Cycles: 1
add sen
r2,r19
; Add r19 to r2
; Set Negative Flag
0856I–AVR–07/10
133
SER – Set all Bits in Register Description:
Loads $FF directly to register Rd.
Operation:
(i) Rd ← $FF
Syntax: Operands:
(i) SER Rd 16 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
1110
1111
dddd
1111
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
Example:
Words: 1(2bytes) Cycles: 1
clr r16
ser r17
out $18,r16 nop
out $18,r17
; Clear r16
; Set r17
; Write zeros to Port B
; Delay (do nothing)
; Write ones to Port B
134 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0100
1000
–
–
–
1
–
–
–
–
SES – Set Signed Flag Description:
Sets the Signed Flag (S) in SREG (Status Register).
Operation:
(i) S←1
Syntax: Operands:
(i) SES None
16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
S: 1
Signed Flag set
Example:
Words: 1(2bytes) Cycles: 1
add ses
r2,r19
; Add r19 to r2
; Set Negative Flag
0856I–AVR–07/10
135
SET – Set T Flag Description:
Sets the T Flag in SREG (Status Register).
Operation:
(i) T←1
Syntax: Operands:
(i) SET None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
0110
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
T: 1
T Flag set
Example:
Words: 1(2bytes) Cycles: 1
–
1
–
–
–
–
–
–
set ; Set T Flag
136 AVR Instruction Set
0856I–AVR–07/10
1001
0100
0011
1000
–
–
–
–
1
–
–
–
SEV – Set Overflow Flag Description:
Sets the Overflow Flag (V) in SREG (Status Register).
Operation:
(i) V←1
Syntax: Operands:
(i) SEV None
16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register (SREG) and Boolean Formula: ITHSVNZC
V: 1
Overflow Flag set
Example:
Words: 1(2bytes) Cycles: 1
add sev
r2,r19
; Add r19 to r2
; Set Overflow Flag
0856I–AVR–07/10
137
SEZ – Set Zero Flag Description:
Sets the Zero Flag (Z) in SREG (Status Register).
Operation:
(i) Z←1
Syntax: Operands:
(i) SEZ None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0100
0001
1000
Status Register (SREG) and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
1
–
Z: 1
Zero Flag set
Example:
add r2,r19 sez
Words: 1(2bytes) Cycles: 1
; Add r19 to r2
; Set Zero Flag
138 AVR Instruction Set
0856I–AVR–07/10
1001
0101
1000
1000
–
–
–
–
–
–
–
–
AVR Instruction Set
SLEEP Description:
This instruction sets the circuit in sleep mode defined by the MCU Control Register.
Operation:
Refer to the device documentation for detailed description of SLEEP usage.
Syntax: Operands: Program Counter:
SLEEP None PC ← PC + 1 16-bit Opcode:
Status Register (SREG) and Boolean Formula: ITHSVNZC
Example:
Words: 1(2bytes) Cycles: 1
mov r0,r11 ; Copy r11 to r0 ldi r16,(1<
; Branch destination (do nothing)
152 AVR Instruction Set
0856I–AVR–07/10
0101
KKKK
dddd
KKKK
–
–
⇔
⇔
⇔
⇔
⇔
⇔
SUBI – Subtract Immediate Description:
Subtracts a register and a constant and places the result in the destination register Rd. This instruction is working on Reg- ister R16 to R31 and is very well suited for operations on the X, Y and Z-pointers.
Operation:
(i) Rd ← Rd – K
Syntax: Operands:
(i) SUBI Rd,K 16 ≤ d ≤ 31, 0 ≤ K ≤ 255 16-bit Opcode:
Program Counter:
PC ← PC + 1
AVR Instruction Set
Status Register and Boolean Formula: ITHSVNZC
H: Rd3• K3+K3 •R3 +R3 •Rd3
Set if there was a borrow from bit 3; cleared otherwise
S: N ⊕ V, For signed tests.
V: Rd7• K7 •R7 +Rd7• K7 •R7
Set if two’s complement overflow resulted from the operation; cleared otherwise.
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
C: Rd7• K7 +K7 •R7 +R7• Rd7
Set if the absolute value of K is larger than the absolute value of Rd; cleared otherwise.
R (Result) equals Rd after the operation.
Example:
noteq: nop
Words: 1(2bytes) Cycles: 1
subi brne …
r22,$11
noteq
; Subtract $11 from r22
; Branch if r22<>$11
; Branch destination (do nothing)
0856I–AVR–07/10
153
SWAP – Swap Nibbles Description:
Swaps high and low nibbles in a register.
Operation:
(i) R(7:4) ← Rd(3:0), R(3:0) ← Rd(7:4) Syntax: Operands:
(i) SWAP Rd 0 ≤ d ≤ 31 16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
010d
dddd
0010
Status Register and Boolean Formula: ITHSVNZC
–
–
–
–
–
–
–
–
R (Result) equals Rd after the operation.
Example:
Words: 1(2bytes) Cycles: 1
inc r1 swap r1 inc r1 swap r1
; Increment
; Swap high
; Increment
; Swap back
r1
and low nibble of r1
high nibble of r1
154 AVR Instruction Set
0856I–AVR–07/10
0010
00dd
dddd
dddd
–
–
–
⇔
0
⇔
⇔
–
TST – Test for Zero or Minus Description:
Tests if a register is zero or negative. Performs a logical AND between a register and itself. The register will remain unchanged.
Operation:
(i) Rd←Rd•Rd
Syntax: Operands: Program Counter:
(i) TSTRd 0≤d≤31 PC←PC+1 16-bit Opcode: (see AND Rd, Rd)
Status Register and Boolean Formula: ITHSVNZC
S: N ⊕ V, For signed tests. V: 0
Cleared
N: R7
Set if MSB of the result is set; cleared otherwise.
Z: R7• R6 •R5• R4• R3 •R2• R1• R0
Set if the result is $00; cleared otherwise.
AVR Instruction Set
R (Result) equals Rd.
Example:
tst r0 breq zero …
zero: nop
Words: 1(2bytes) Cycles: 1
; Test r0
; Branch if r0=0
; Branch destination (do nothing)
0856I–AVR–07/10
155
WDR – Watchdog Reset Description:
This instruction resets the Watchdog Timer. This instruction must be executed within a limited time given by the WD pres- caler. See the Watchdog Timer hardware specification.
Operation:
(i) WD timer restart.
Syntax: Operands:
(i) WDR None
16-bit Opcode:
Program Counter:
PC ← PC + 1
1001
0101
1010
1000
Status Register and Boolean Formula: ITHSVNZC
Example:
wdr ; Reset watchdog timer
Words: 1(2bytes) Cycles: 1
–
–
–
–
–
–
–
–
156 AVR Instruction Set
0856I–AVR–07/10
1001
001r
rrrr
0100
XCH – Exchange Description:
Operation:
(i) (Z) ← Rd, Rd ← (Z) Syntax:
(i) XCH Z,Rd
16-bit Opcode:
Words: 1(2bytes) Cycles: 1
Operands:
0 ≤ d ≤ 31
Program Counter:
PC ← PC + 1
AVR Instruction Set
0856I–AVR–07/10
157
Datasheet Revision History
Please note that the referring page numbers in this section are referred to this document. The referring revision in this sec- tion is referred to the document revision.
Rev.0856I – 07/10
1. Updated “Complete Instruction Set Summary” on page 11 with new instructions: LAC, LAS, LAT and XCH. “LAC – Load And Clear” on page 84
“LAS – Load And Set” on page 85
“LAT – Load And Toggle” on page 86
“XCH – Exchange” on page 157
2. Updated number of clock cycles column to include Reduced Core tinyAVR.
(ATtiny replaced by Reduced Core tinyAVR).
Rev.0856H – 04/09
1. Updated “Complete Instruction Set Summary” on page 11:
Updated number of clock cycles column to include Reduced Core tinyAVR.
2. Updated sections for Reduced Core tinyAVR compatibility:
“CBI – Clear Bit in I/O Register” on page 48
“LD – Load Indirect from Data Space to Register using Index X” on page 87
“LD (LDD) – Load Indirect from Data Space to Register using Index Y” on page 90 “LD (LDD) – Load Indirect From Data Space to Register using Index Z” on page 92 “RCALL – Relative Call to Subroutine” on page 114
“SBI – Set Bit in I/O Register” on page 123
“ST – Store Indirect From Register to Data Space using Index X” on page 144
“ST (STD) – Store Indirect From Register to Data Space using Index Y” on page 146 “ST (STD) – Store Indirect From Register to Data Space using Index Z” on page 148
3. Added sections for Reduced Core tinyAVR compatibility: “LDS (16-bit) – Load Direct from Data Space” on page 96 “STS (16-bit) – Store Direct to Data Space” on page 151
Rev.0856G – 07/08
1. Inserted “Datasheet Revision History”
2. Updated “Cycles XMEGA” for ST, by removing (iv). 3. Updated “SPM #2” opcodes.
158 AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
Rev.0856F – 05/08
1. This revision is based on the AVR Instruction Set 0856E-AVR-11/05 Changes done compared to AVR Instruction Set 0856E-AVR-11/05:
– Updated “Complete Instruction Set Summary” with DES and SPM #2.
– Updated AVR Instruction Set with XMEGA Clock cycles and Instruction Description.
0856I–AVR–07/10
159
Headquarters
Atmel Corporation
2325 Orchard Parkway San Jose, CA 95131 USA
Tel: 1(408) 441-0311 Fax: 1(408) 487-2600
International
Atmel Asia
Unit 1-5 & 16, 19/F
BEA Tower, Millennium City 5 418 Kwun Tong Road
Kwun Tong, Kowloon
Hong Kong
Tel: (852) 2245-6100
Fax: (852) 2722-1369
Product Contact
Web Site
www.atmel.com
Literature Requests
www.atmel.com/literature
Atmel Europe
Le Krebs
8, Rue Jean-Pierre Timbaud BP 309
78054 Saint-Quentin-en- Yvelines Cedex
France
Tel: (33) 1-30-60-70-00 Fax: (33) 1-30-60-71-11
Technical Support
avr@atmel.com
Atmel Japan
9F, Tonetsu Shinkawa Bldg. 1-24-8 Shinkawa
Chuo-ku, Tokyo 104-0033 Japan
Tel: (81) 3-3523-3551 Fax: (81) 3-3523-7581
Sales Contact
www.atmel.com/contacts
Disclaimer: The information in this document is provided in connection with Atmel products. No license, express or implied, by estoppel or otherwise, to any intellectual property right is granted by this document or in connection with the sale of Atmel products. EXCEPT AS SET FORTH IN ATMEL’S TERMS AND CONDI- TIONS OF SALE LOCATED ON ATMEL’S WEB SITE, ATMEL ASSUMES NO LIABILITY WHATSOEVER AND DISCLAIMS ANY EXPRESS, IMPLIED OR STATUTORY WARRANTY RELATING TO ITS PRODUCTS INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE, SPECIAL OR INCIDEN- TAL DAMAGES (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS INTERRUPTION, OR LOSS OF INFORMATION) ARISING OUT OF THE USE OR INABILITY TO USE THIS DOCUMENT, EVEN IF ATMEL HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Atmel makes no representations or warranties with respect to the accuracy or completeness of the contents of this document and reserves the right to make changes to specifications and product descriptions at any time without notice. Atmel does not make any commitment to update the information contained herein. Unless specifically provided otherwise, Atmel products are not suitable for, and shall not be used in, automotive applications. Atmel’s products are not intended, authorized, or warranted for use as components in applications intended to support or sustain life.
© 2010 Atmel Corporation. All rights reserved. Atmel®, Atmel logo and combinations thereof, AVR®, AVR® logo, tinyAVR® and others are regis- tered trademarks, XMEGATM and others are trademarks of Atmel Corporation or its subsidiaries. Other terms and product names may be trade- marks of others.
0856I–A VR–07/10