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)
8-bit
Instruction Set
A:I/O location address
q:Displacement for direct addressing (6-bit)
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
AVR Instruction Set
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
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
OPRr/Rd
16
31
150
Data Address
0x0000
RAMEND
20 19
Data Space
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
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
AVR Instruction Set
Data Space
0x0000
RAMEND
Y OR Z - REGISTER
OPqRr/Rd
0
05610
15
15
Data Space
0x0000
X, Y OR Z - REGISTER
015
RAMEND
Data Indirect with Displacement
Figure 5. Data Indirect with Displacement
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.
0856I–AVR–07/10
5
Data Indirect with Pre-decrement
Data Space
0x0000
X, Y OR Z - REGISTER
015
-1
RAMEND
Data Space
0x0000
X, Y OR Z - REGISTER
015
1
RAMEND
Figure 7. Data Indirect Addressing with Pre-decrement
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
The X-, Y-, or the Z-register is incremented after the operation. Operand address is the content of the X-, Y-, or the Z-register prior to incrementing.
6
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
FLASHEND
0x0000
LSB
FLASHEND
0x0000
1
LSB
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
FLASHEND
3116
OP6 MSB
16 LSB
PC
210
150
0x0000
FLASHEND
PC
150
0x0000
Figure 11. Direct Program Memory Addressing
Program execution continues at the address immediate in the instruction word.
Indirect Program Addressing, IJMP and ICALL
Figure 12. Indirect Program Memory Addressing
Program execution continues at address contained by the Z-register (i.e., the PC is loaded with the contents of the Zregister).
8
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
FLASHEND
1
0x0000
Relative Program Addressing, RJMP and RCALL
Figure 13. Relative Program Memory Addressing
Program execution continues at address PC + k + 1. The relative address k is from -2048 to 2047.
WDRWatchdog Reset(see specific descr. for WDR)None1
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.
#Clocks
XMEGA
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)ADC Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
000111rdddddrrrr
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.
Example:
; Add R1:R0 to R3:R2
add r2,r0; Add low byte
adcr3,r1; Add with carry high byte
Words: 1 (2 bytes)
Cycles: 1
16
AVR Instruction Set
0856I–AVR–07/10
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)ADD Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
000011rdddddrrrr
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:
addr1,r2; Add r2 to r1 (r1=r1+r2)
addr28,r28; Add r28 to itself (r28=r28+r28)
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)ADIW Rd+1:Rd,Kd ∈ {24,26,28,30}, 0 ≤ K ≤ 63PC ← PC + 1
16-bit Opcode:
10010110KKddKKKK
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.
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 (2 bytes)
Cycles: 2
18
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
AND – Logical AND
Description:
Performs the logical AND between the contents of register Rd and register Rr and places the result in the destination register Rd.
Operation:
(i)Rd ← Rd • Rr
Syntax:Operands:Program Counter:
(i)AND Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
001000rdddddrrrr
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –⇔0⇔⇔ –
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:
andr2,r3; Bitwise and r2 and r3, result in r2
ldir16,1; Set bitmask 0000 0001 in r16
andr2,r16; Isolate bit 0 in r2
Words: 1 (2 bytes)
Cycles: 1
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 register Rd.
Operation:
(i)Rd ← Rd • K
Syntax:Operands:Program Counter:
(i)ANDI Rd,K16 ≤ d ≤ 31, 0 ≤ K ≤ 255PC ← PC + 1
16-bit Opcode:
0111KKKKddddKKKK
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –⇔
0
⇔⇔ –
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 (2 bytes)
Cycles: 1
20
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
b7-------------------b0C
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.
Operation:
(i)
Syntax:Operands:Program Counter:
(i)ASR Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001010ddddd0101
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –⇔⇔⇔⇔⇔
S: N ⊕ V, For signed tests.
V:N ⊕ C (For N and C after the shift)
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:
ldir16,$10; Load decimal 16 into r16
asrr16; r16=r16 / 2
ldir17,$FC; Load -4 in r17
asrr17; r17=r17/2
Words: 1 (2 bytes)
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:Program Counter:
(i)BCLR s0 ≤ s ≤ 7PC ← PC + 1
16-bit Opcode:
100101001sss1000
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:
bclr0; Clear Carry Flag
bclr 7; Disable interrupts
Words: 1 (2 bytes)
Cycles: 1
22
AVR Instruction Set
0856I–AVR–07/10
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:Program Counter:
(i)BLD Rd,b0 ≤ d ≤ 31, 0 ≤ b ≤ 7PC ← PC + 1
16 bit Opcode:
1111100ddddd0bbb
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
; Copy bit
bstr1,2; Store bit 2 of r1 in T Flag
bldr0,4; Load T Flag into bit 4 of r0
Words: 1 (2 bytes)
Cycles: 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,k0 ≤ s ≤ 7, -64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkksss
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
cpir20,5; Compare r20 to the value 5
brbc 1,noteq; Branch if Zero Flag cleared
...
noteq:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
24
AVR Instruction Set
0856I–AVR–07/10
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,k0 ≤ s ≤ 7, -64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkksss
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
bstr0,3; Load T bit with bit 3 of r0
brbs 6,bitset ; Branch T bit was set
...
bitset: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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 represented 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:Program Counter:
(i)BRCC k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
addr22,r23; Add r23 to r22
brcc nocarry; Branch if carry cleared
...
nocarry: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
26
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 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 0,k).
Operation:
(i)If C = 1 then PC ← PC + k + 1, else PC ← PC + 1
Syntax:Operands:Program Counter:
(i)BRCS k -64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
cpir26,$56; Compare r26 with $56
brcs carry; Branch if carry set
...
carry: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
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 instruction 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:Program Counter:
(i)BREAKNonePC ← PC + 1
16-bit Opcode:
1001010110011000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Words: 1 (2 bytes)
Cycles: 1
28
AVR Instruction Set
0856I–AVR–07/10
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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
cpr1,r0; Compare registers r1 and r0
breq equal; Branch if registers equal
...
equal: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
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 executed 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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk100
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
cpr11,r12; Compare registers r11 and r12
brge greateq; Branch if r11 ≥ r12 (signed)
...
greateq: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
30
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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:Program Counter:
(i)BRHC k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk101
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
brhc hclear; Branch if Half Carry Flag cleared
...
hclear:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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 represented 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:Program Counter:
(i)BRHS k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk101
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
brhshset; Branch if Half Carry Flag set
...
hset:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
32
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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:Program Counter:
(i)BRID k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk111
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
brid intdis; Branch if interrupt disabled
...
intdis:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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:Program Counter:
(i)BRIE k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk111
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
brieinten; Branch if interrupt enabled
...
inten:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
34
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 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 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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
eorr19,r19; Clear r19
loop:incr19; Increase r19
...
cpir19,$10; Compare r19 with $10
brlo loop; Branch if r19 < $10 (unsigned)
nop; Exit from loop (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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 number 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 complement 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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk100
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
cp r16,r1; Compare r16 to r1
brlt less; Branch if r16 < r1 (signed)
...
less:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
36
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 represented 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:Program Counter:
(i)BRMI k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk010
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
subir18,4; Subtract 4 from r18
brminegative; Branch if result negative
...
negative:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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 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 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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
eorr27,r27; Clear r27
loop:incr27; Increase r27
...
cpir27,5; Compare r27 to 5
brneloop; Branch if r27<>5
nop; Loop exit (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
38
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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:Program Counter:
(i)BRPL k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk010
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
subi r26,$50; Subtract $50 from r26
brpl positive; Branch if r26 positive
...
positive:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
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 executed 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 ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
subi r19,4; Subtract 4 from r19
brsh highsm; Branch if r19 >= 4 (unsigned)
...
highsm:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
40
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 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 6,k).
Operation:
(i)If T = 0 then PC ← PC + k + 1, else PC ← PC + 1
Syntax:Operands:Program Counter:
(i)BRTC k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk110
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
bstr3,5; Store bit 5 of r3 in T Flag
brtctclear; Branch if this bit was cleared
...
tclear:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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:Program Counter:
(i)BRTS k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk110
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
bstr3,5; Store bit 5 of r3 in T Flag
brts tset; Branch if this bit was set
...
tset:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
42
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 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 3,k).
Operation:
(i)If V = 0 then PC ← PC + k + 1, else PC ← PC + 1
Syntax:Operands:Program Counter:
(i)BRVC k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111101kkkkkkk011
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
addr3,r4; Add r4 to r3
brvc noover; Branch if no overflow
...
noover:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
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 represented 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:Program Counter:
(i)BRVS k-64 ≤ k ≤ +63PC ← PC + k + 1
PC ← PC + 1, if condition is false
16-bit Opcode:
111100kkkkkkk011
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
addr3,r4; Add r4 to r3
brvsoverfl; Branch if overflow
...
overfl:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1 if condition is false
2 if condition is true
44
AVR Instruction Set
0856I–AVR–07/10
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 s0 ≤ s ≤ 7PC ← PC + 1
16-bit Opcode:
100101000sss1000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
⇔⇔⇔⇔⇔⇔⇔⇔
AVR Instruction Set
I:1 if s = 7; Unchanged otherwise.
T:1 if s = 6; Unchanged otherwise.
H:1 if s = 5; Unchanged otherwise.
S:1 if s = 4; Unchanged otherwise.
V:1 if s = 3; Unchanged otherwise.
N:1 if s = 2; Unchanged otherwise.
Z:1 if s = 1; Unchanged otherwise.
C:1 if s = 0; Unchanged otherwise.
Example:
bset6; Set T Flag
bset 7; Enable interrupt
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)BST Rd,b0 ≤ d ≤ 31, 0 ≤ b ≤ 7PC ← PC + 1
16-bit Opcode:
1111101ddddd0bbb
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–⇔––––––
T:0 if bit b in Rd is cleared. Set to 1 otherwise.
Example:
; Copy bit
bstr1,2; Store bit 2 of r1 in T Flag
bldr0,4; Load T into bit 4 of r0
Words: 1 (2 bytes)
Cycles: 1
46
AVR Instruction Set
0856I–AVR–07/10
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 ← kDevices with 16 bits PC, 128K bytes Program memory maximum.
(ii)PC ← kDevices with 22 bits PC, 8M bytes Program memory maximum.
Syntax:Operands:Program CounterStack:
(i)CALL k0 ≤ k < 64KPC ← kSTACK ← PC+2
SP ← SP-2, (2 bytes, 16 bits)
(ii)CALL k0 ≤ k < 4MPC ← kSTACK ← PC+2
SP ← SP-3 (3 bytes, 22 bits)
32-bit Opcode:
1001010kkkkk111k
kkkkkkkkkkkkkkkk
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
movr16,r0; Copy r0 to r16
callcheck; Call subroutine
nop; Continue (do nothing)
...
check: cpir16,$42; Check if r16 has a special value
breq error; Branch if equal
ret; Return from subroutine
...
error: rjmperror; Infinite loop
Words : 2 (4 bytes)
Cycles :4, devices with 16 bit PC
5, devices with 22 bit PC
Cycles XMEGA:3, devices with 16 bit PC
4, devices with 22 bit PC
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.
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.
Operation:
(i)Rd ← Rd • ($FF - K)
Syntax:Operands:Program Counter:
(i)CBR Rd,K16 ≤ d ≤ 31, 0 ≤ K ≤ 255PC ← PC + 1
16-bit Opcode: (see ANDI with K complemented)
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –
⇔
0
⇔⇔ –
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:
cbrr16,$F0; Clear upper nibble of r16
cbrr18,1; Clear bit 0 in r18
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)CLCNonePC ← PC + 1
16-bit Opcode:
1001010010001000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–––––––0
C: 0
Carry Flag cleared
Example:
add r0,r0; Add r0 to itself
clc; Clear Carry Flag
Words: 1 (2 bytes)
Cycles: 1
50
AVR Instruction Set
0856I–AVR–07/10
CLH – Clear Half Carry Flag
Description:
Clears the Half Carry Flag (H) in SREG (Status Register).
Operation:
(i)H ← 0
Syntax:Operands:Program Counter:
(i)CLHNonePC ← PC + 1
16-bit Opcode:
1001010011011000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
AVR Instruction Set
––0–––––
H: 0
Half Carry Flag cleared
Example:
clh; Clear the Half Carry Flag
Words: 1 (2 bytes)
Cycles: 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:Program Counter:
(i)CLINonePC ← PC + 1
16-bit Opcode:
1001010011111000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
0–––––––
I: 0
Global Interrupt Flag cleared
Example:
intemp, SREG ; Store SREG value (temp must be defined by user)
cli; Disable interrupts during timed sequence
sbiEECR, EEMWE ; Start EEPROM write
sbiEECR, EEWE
outSREG, temp ; Restore SREG value (I-Flag)
Words: 1 (2 bytes)
Cycles: 1
52
AVR Instruction Set
0856I–AVR–07/10
CLN – Clear Negative Flag
Description:
Clears the Negative Flag (N) in SREG (Status Register).
Operation:
(i)N ← 0
Syntax:Operands:Program Counter:
(i)CLNNonePC ← PC + 1
16-bit Opcode:
1001010010101000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
AVR Instruction Set
–––––0––
N: 0
Negative Flag cleared
Example:
addr2,r3; Add r3 to r2
cln; Clear Negative Flag
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)CLR Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode: (see EOR Rd,Rd)
001001dddddddddd
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–––0001–
S: 0
Cleared
V:0
Cleared
N:0
Cleared
Z:1
Set
R (Result) equals Rd after the operation.
Example:
clr r18; clear r18
loop:inc r18; increase r18
...
cpir18,$50; Compare r18 to $50
brne loop
Words: 1 (2 bytes)
Cycles: 1
54
AVR Instruction Set
0856I–AVR–07/10
CLS – Clear Signed Flag
Description:
Clears the Signed Flag (S) in SREG (Status Register).
Operation:
(i)S ← 0
Syntax:Operands:Program Counter:
(i)CLSNonePC ← PC + 1
16-bit Opcode:
1001010011001000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
AVR Instruction Set
–––0––––
S: 0
Signed Flag cleared
Example:
addr2,r3; Add r3 to r2
cls; Clear Signed Flag
Words: 1 (2 bytes)
Cycles: 1
0856I–AVR–07/10
55
CLT – Clear T Flag
Description:
Clears the T Flag in SREG (Status Register).
Operation:
(i)T ← 0
Syntax:Operands:Program Counter:
(i)CLTNonePC ← PC + 1
16-bit Opcode:
1001010011101000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–0––––––
T: 0
T Flag cleared
Example:
clt; Clear T Flag
Words: 1 (2 bytes)
Cycles: 1
56
AVR Instruction Set
0856I–AVR–07/10
CLV – Clear Overflow Flag
Description:
Clears the Overflow Flag (V) in SREG (Status Register).
Operation:
(i)V ← 0
Syntax:Operands:Program Counter:
(i)CLVNonePC ← PC + 1
16-bit Opcode:
1001010010111000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
AVR Instruction Set
––––0–––
V: 0
Overflow Flag cleared
Example:
addr2,r3; Add r3 to r2
clv; Clear Overflow Flag
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)CLZNonePC ← PC + 1
16-bit Opcode:
1001010010011000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––0–
Z: 0
Zero Flag cleared
Example:
addr2,r3; Add r3 to r2
clz; Clear zero
Words: 1 (2 bytes)
Cycles: 1
58
AVR Instruction Set
0856I–AVR–07/10
COM – One’s Complement
Description:
This instruction performs a One’s Complement of register Rd.
Operation:
(i)Rd ← $FF - Rd
Syntax:Operands:Program Counter:
(i)COM Rd0 ≤ d ≤ 31 PC ← PC + 1
16-bit Opcode:
1001010ddddd0000
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –
⇔
0
⇔⇔
1
AVR Instruction Set
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.
Example:
comr4; Take one’s complement of r4
breqzero; Branch if zero
...
zero:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)CP Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
000101rdddddrrrr
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:
cp r4,r19; Compare r4 with r19
brne noteq; Branch if r4 <> r19
...
noteq: nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1
60
AVR Instruction Set
0856I–AVR–07/10
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:Program Counter:
(i)CPC Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
000001rdddddrrrr
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.
R (Result) after the operation.
Example:
; Compare r3:r2 with r1:r0
cpr2,r0; Compare low byte
cpcr3,r1; Compare high byte
brnenoteq; Branch if not equal
...
noteq: nop; Branch destination (do nothing)
0856I–AVR–07/10
61
Words: 1 (2 bytes)
Cycles: 1
62
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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:Program Counter:
(i)CPI Rd,K16 ≤ d ≤ 31, 0≤ K ≤ 255PC ← PC + 1
16-bit Opcode:
0011KKKKddddKKKK
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:
cpir19,3; Compare r19 with 3
brneerror; Branch if r19<>3
...
error:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1
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:Program Counter:
(i)CPSE Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1, Condition false - no skip
PC ← PC + 2, Skip a one word instruction
PC ← PC + 3, Skip a two word instruction
16-bit Opcode:
000100rdddddrrrr
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
incr4; Increase r4
cpser4,r0; Compare r4 to r0
negr4; Only executed if r4<>r0
nop; Continue (do nothing)
Words: 1 (2 bytes)
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
64
AVR Instruction Set
0856I–AVR–07/10
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 multiple-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:Program Counter:
(i)DEC Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001010ddddd1010
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:
ldir17,$10; Load constant in r17
loop:add r1,r2; Add r2 to r1
decr17; Decrement r17
brne loop; Branch if r17<>0
nop; Continue (do nothing)
Words: 1 (2 bytes)
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. Intermediate 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 Standards 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 thenEncrypt round (R7-R0, R15-R8, K)
If H = 1 thenDecrypt round (R7-R0, R15-R8, K)
Syntax:Operands:Program Counter:
(i)DES K0x00≤K≤ 0x0FPC ← PC + 1
16-bit Opcode:
10010100KKKK1011
Example:
DES 0x00
DES 0x01
…
DES 0x0E
DES 0x0F
Words: 1
Cycles: 1 (2
Note:1. If the DES instruction is succeeding a non-DES instruction, an extra cycle is inserted.
(1)
)
66
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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:Program Counter:Stack:
(i)EICALL NoneSee OperationSTACK ← PC + 1
SP ← SP - 3 (3 bytes, 22 bits)
16-bit Opcode:
1001010100011001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldir16,$05; Set up EIND and Z-pointer
outEIND,r16
ldir30,$00
ldir31,$10
eicall; Call to $051000
Words : 1 (2 bytes)
Cycles :4 (only implemented in devices with 22 bit PC)
Cycles XMEGA: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:Program Counter:Stack:
(i)EIJMP NoneSee OperationNot Affected
16-bit Opcode:
1001010000011001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldir16,$05; Set up EIND and Z-pointer
outEIND,r16
ldir30,$00
ldir31,$10
eijmp; Jump to $051000
Words: 1 (2 bytes)
Cycles: 2
68
AVR Instruction Set
0856I–AVR–07/10
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 destination 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 (Z
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.
= 1). This instruction can address the entire Program memory space.
LSB
Syntax:Operands:Program Counter:
(i)ELPMNone, R0 impliedPC ← PC + 1
(ii)ELPM Rd, Z0 ≤ d ≤ 31PC ← PC + 1
(iii)ELPM Rd, Z+0 ≤ d ≤ 31PC ← PC + 1
16 bit Opcode:
(i)1001010111011000
(ii)1001000ddddd0110
(iii)1001000ddddd0111
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldiZL, byte3(Table_1<<1); Initialize Z-pointer
outRAMPZ, ZL
ldiZH, byte2(Table_1<<1)
ldiZL, byte1(Table_1<<1)
elpm r16, Z+; Load constant from Program
; memory pointed to by RAMPZ:Z (Z is r31:r30)
...
Table_1:
.dw 0x3738; 0x38 is addressed when Z
; 0x37 is addressed when Z
LSB
LSB
= 0
= 1
0856I–AVR–07/10
69
...
Words: 1 (2 bytes)
Cycles: 3
70
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
EOR – Exclusive OR
Description:
Performs the logical EOR between the contents of register Rd and register Rr and places the result in the destination register Rd.
Operation:
(i)Rd ← Rd ⊕ Rr
Syntax:Operands:Program Counter:
(i)EOR Rd,Rr0 ≤ d ≤ 31, 0 ≤ r ≤ 31PC ← PC + 1
16-bit Opcode:
001001rdddddrrrr
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –
⇔
0
⇔⇔
–
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:
eorr4,r4; Clear r4
eorr0,r22; Bitwise exclusive or between r0 and r22
Words: 1 (2 bytes)
Cycles: 1
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.
RdRrR1R0
Multiplicand
8816
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 signal 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 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 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).
×
MultiplierÆProduct HighProduct Low
This instruction is not available in all devices. Refer to the device specific instruction set summary.
This instruction performs 8-bit × 8-bit → 16-bit signed multiplication and shifts the result one bit left.
RdRrR1R0
Multiplicand
8816
×
Multiplier
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 signal 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 HighProduct Low
Operation:
(i)R1:R0 ← Rd × Rr(signed (1.15) ← signed (1.7) × signed (1.7))
Syntax:Operands:Program Counter:
(i)FMULS Rd,Rr16 ≤ d ≤ 23, 16≤ r ≤ 23PC ← PC + 1
16-bit Opcode:
000000111ddd0rrr
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––
⇔⇔
C: R16
Set if bit 15 of the result before left shift is set; cleared otherwise.
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
Words: 1 (2 bytes)
Cycles: 2
AVR Instruction Set
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.
RdRrR1R0
Multiplicand
8816
×
Multiplier
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 signal 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 incorporates 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).
→
Product HighProduct Low
This instruction is not available in all devices. Refer to the device specific instruction set summary.
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:Program Counter:Stack:
(i)ICALL NoneSee OperationSTACK ← PC + 1
SP ← SP - 2 (2 bytes, 16 bits)
(ii)ICALL NoneSee OperationSTACK ← PC + 1
SP ← SP - 3 (3 bytes, 22 bits)
16-bit Opcode:
1001010100001001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
movr30,r0; Set offset to call table
icall; Call routine pointed to by r31:r30
Words :1 (2 bytes)
Cycles :3, devices with 16 bit PC
4, devices with 22 bit PC
Cycles XMEGA:2, devices with 16 bit PC
3, devices with 22 bit PC
78
AVR Instruction Set
0856I–AVR–07/10
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:Stack:
(i),(ii)IJMP NoneSee OperationNot Affected
16-bit Opcode:
1001010000001001
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
movr30,r0; Set offset to jump table
ijmp; Jump to routine pointed to by r31:r30
Words: 1 (2 bytes)
Cycles: 2
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:Program Counter:
(i)IN Rd,A0 ≤ d ≤ 31, 0 ≤ A ≤ 63PC ← PC + 1
16-bit Opcode:
10110AAdddddAAAA
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
inr25,$16; Read Port B
cpir25,4; Compare read value to constant
breqexit; Branch if r25=4
...
exit:nop; Branch destination (do nothing)
Words: 1 (2 bytes)
Cycles: 1
80
AVR Instruction Set
0856I–AVR–07/10
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 multiple-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)INC Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001010ddddd0011
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:
clrr22; clear r22
loop:incr22; increment r22
...
cpir22,$4F; Compare r22 to $4f
brneloop; Branch if not equal
nop; Continue (do nothing)
–
0856I–AVR–07/10
81
Words: 1 (2 bytes)
Cycles: 1
82
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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.
Operation:
(i)PC ← k
Syntax:Operands:Program Counter:Stack:
(i)JMP k0 ≤ k < 4MPC ← kUnchanged
32-bit Opcode:
1001010kkkkk110k
kkkkkkkkkkkkkkkk
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
movr1,r0; Copy r0 to r1
jmpfarplc; Unconditional jump
...
farplc: nop; Jump destination (do nothing)
Words: 2 (4 bytes)
Cycles: 3
0856I–AVR–07/10
83
LAC – Load And Clear
Description:
Operation:
(i)(Z) ← Rd • ($FF – (Z))
Syntax:Operands:Program Counter:
(i)LAC Z,Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001001rrrrr0110
Words: 1 (2 bytes)
Cycles: 1
84
AVR Instruction Set
0856I–AVR–07/10
LAS – Load And Set
Description:
Operation:
(i)(Z) ← Rd v (Z), Rd ← (Z)
Syntax:Operands:Program Counter:
(i)LAS Z,Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001001rrrrr0101
Words: 1 (2 bytes)
Cycles: 1
AVR Instruction Set
0856I–AVR–07/10
85
LAT – Load And Toggle
Description:
Operation:
(i)(Z) ← Rd ⊕ (Z), Rd ← (Z)
Syntax:Operands:Program Counter:
(i)LAT Z,Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001001rrrrr0111
Words: 1 (2 bytes)
Cycles: 1
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 current 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 increment/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:Comment:
(i)Rd ← (X)X: Unchanged
(ii)Rd ← (X)X ← X + 1X: Post incremented
(iii)X ← X - 1Rd ← (X)X: Pre decremented
Syntax:Operands:Program Counter:
(i)LD Rd, X0 ≤ d ≤ 31PC ← PC + 1
(ii)LD Rd, X+0 ≤ d ≤ 31PC ← PC + 1
(iii)LD Rd, -X0 ≤ d ≤ 31PC ← PC + 1
0856I–AVR–07/10
87
16-bit Opcode:
(i)1001000ddddd1100
(ii)1001000ddddd1101
(iii)1001000ddddd1110
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
88
AVR Instruction Set
0856I–AVR–07/10
Example:
AVR Instruction Set
clrr27; Clear X high byte
ldir26,$60; Set X low byte to $60
ldr0,X+; Load r0 with data space loc. $60(X post inc)
ldr1,X; Load r1 with data space loc. $61
ldir26,$63; Set X low byte to $63
ldr2,X; Load r2 with data space loc. $63
ldr3,–X; Load r3 with data space loc. $62(X pre dec)
Words: 1 (2 bytes)
Cycles:(i)1
(2)
(ii)2
(2)
(iii) 3
(ii)1
(iii) 2
(1)
(1)
(1)
Cycles XMEGA:(i)1
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
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 current 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 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.
The result of these combinations is undefined:
LD r28, Y+
LD r29, Y+
LD r28, -Y
LD r29, -Y
Using the Y-pointer:
Operation:Comment:
(i)Rd ← (Y)Y: Unchanged
(ii)Rd ← (Y)Y ← Y + 1Y: Post incremented
(iii)Y ← Y - 1Rd ← (Y)Y: Pre decremented
(iv) Rd ← (Y+q)Y: Unchanged, q: Displacement
Syntax:Operands:Program Counter:
(i)LD Rd, Y0 ≤ d ≤ 31PC ← PC + 1
(ii)LD Rd, Y+0 ≤ d ≤ 31PC ← PC + 1
(iii)LD Rd, -Y0 ≤ d ≤ 31PC ← PC + 1
(iv)LDD Rd, Y+q0 ≤ d ≤ 31, 0 ≤ q ≤ 63PC ← PC + 1
90
AVR Instruction Set
0856I–AVR–07/10
16-bit Opcode:
(i)1000000ddddd1000
(ii)1001000ddddd1001
(iii)1001000ddddd1010
(iv)10q0qq0ddddd1qqq
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
clrr29; Clear Y high byte
ldir28,$60; Set Y low byte to $60
ldr0,Y+; Load r0 with data space loc. $60(Y post inc)
ldr1,Y; Load r1 with data space loc. $61
ldir28,$63; Set Y low byte to $63
ldr2,Y; Load r2 with data space loc. $63
ldr3,-Y; Load r3 with data space loc. $62(Y pre dec)
lddr4,Y+2; Load r4 with data space loc. $64
Words: 1 (2 bytes)
Cycles:(i)1
Cycles XMEGA:(i)1
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.
(ii)2
(iii) 3
(ii) 1
(iii) 2
(iv) 2
(2)
(2)
(1)
(1)
(1)
(1)
AVR Instruction Set
0856I–AVR–07/10
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.
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 current 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:Comment:
(i)Rd ← (Z)Z: Unchanged
(ii)Rd ← (Z)Z ← Z + 1Z: Post increment
(iii)Z ← Z -1 Rd ← (Z)Z: Pre decrement
(iv) Rd ← (Z+q)Z: Unchanged, q: Displacement
Syntax:Operands:Program Counter:
(i)LD Rd, Z0 ≤ d ≤ 31PC ← PC + 1
(ii)LD Rd, Z+0 ≤ d ≤ 31PC ← PC + 1
(iii)LD Rd, -Z0 ≤ d ≤ 31PC ← PC + 1
(iv)LDD Rd, Z+q0 ≤ d ≤ 31, 0 ≤ q ≤ 63PC ← PC + 1
92
AVR Instruction Set
0856I–AVR–07/10
16-bit Opcode:
(i)1000000ddddd0000
(ii)1001000ddddd0001
(iii)1001000ddddd0010
(iv)10q0qq0ddddd0qqq
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
clrr31; Clear Z high byte
ldir30,$60; Set Z low byte to $60
ldr0,Z+; Load r0 with data space loc. $60(Z post inc)
ldr1,Z; Load r1 with data space loc. $61
ldir30,$63; Set Z low byte to $63
ldr2,Z; Load r2 with data space loc. $63
ldr3,-Z; Load r3 with data space loc. $62(Z pre dec)
lddr4,Z+2; Load r4 with data space loc. $64
AVR Instruction Set
Words: 1 (2 bytes)
Cycles:(i)1
(2)
(ii)2
(2)
(iii) 3
(ii) 1
(iii) 2
(iv) 2
(1)
(1)
(1)
(1)
Cycles XMEGA:(i)1
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:Program Counter:
(i)LDI Rd,K16 ≤ d ≤ 31, 0 ≤ K ≤ 255PC ← PC + 1
16-bit Opcode:
1110KKKKddddKKKK
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
clrr31; Clear Z high byte
ldir30,$F0; Set Z low byte to $F0
lpm; Load constant from Program
; memory pointed to by Z
Words: 1 (2 bytes)
Cycles: 1
94
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 register 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.
Operation:
(i)Rd ← (k)
Syntax:Operands:Program Counter:
(i)LDS Rd,k0 ≤ d ≤ 31, 0 ≤ k ≤ 65535PC ← PC + 2
32-bit Opcode:
1001000ddddd0000
kkkkkkkkkkkkkkkk
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldsr2,$FF00; Load r2 with the contents of data space location $FF00
addr2,r1; add r1 to r2
sts$FF00,r2; Write back
Words: 2 (4 bytes)
Cycles:2
Cycles XMEGA: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 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.
A 7-bit address must be supplied. The address given in the instruction is coded to a data space address as follows:
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:Program Counter:
(i)LDS Rd,k16 ≤ d ≤ 31, 0 ≤ k ≤ 127PC ← PC + 1
16-bit Opcode:
10100kkkddddkkkk
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldsr16,$00; Load r16 with the contents of data space location $00
addr16,r17; add r17 to r16
sts$00,r16; Write result to the same address it was fetched from
Words: 1 (2 bytes)
Cycles: 1
Note:Registers r0..r15 are remapped to r16..r31.
96
AVR Instruction Set
0856I–AVR–07/10
AVR Instruction Set
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 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 (Z
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.
(i)LPMNone, R0 impliedPC ← PC + 1
(ii)LPM Rd, Z0 ≤ d ≤ 31PC ← PC + 1
(iii)LPM Rd, Z+0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
(i)1001010111001000
(ii)1001000ddddd0100
(iii)1001000ddddd0101
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––––––––
Example:
ldiZH, high(Table_1<<1); Initialize Z-pointer
ldiZL, low(Table_1<<1)
lpmr16, Z; Load constant from Program
; Memory pointed to by Z (r31:r30)
...
Table_1:
.dw 0x5876; 0x76 is addresses when Z
; 0x58 is addresses when Z
...
LSB
LSB
= 0
= 1
0856I–AVR–07/10
97
Words: 1 (2 bytes)
Cycles: 3
98
AVR Instruction Set
0856I–AVR–07/10
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 effectively multiplies signed and unsigned values by two.
Operation:
(i)
←
←
C
b7 - - - - - - - - - - - - - - - - - - b0
Syntax:Operands:Program Counter:
(i)LSL Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode: (see ADD Rd,Rd)
000011dddddddddd
←
0
Status Register (SREG) and Boolean Formula:
ITHSVNZC
––
⇔⇔⇔⇔⇔⇔
H:Rd3
S: N ⊕ V, For signed tests.
V:N ⊕ C (For N and C after the shift)
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:
add r0,r4; Add r4 to r0
lslr0; Multiply r0 by 2
Words: 1 (2 bytes)
Cycles: 1
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 effectively divides an unsigned value by two. The C Flag can be used to round the result.
Operation:
→
→
0
b7 - - - - - - - - - - - - - - - - - - b0
Syntax:Operands:Program Counter:
→
C
(i)LSR Rd0 ≤ d ≤ 31PC ← PC + 1
16-bit Opcode:
1001010ddddd0110
Status Register (SREG) and Boolean Formula:
ITHSVNZC
–– –
⇔⇔
0
⇔⇔
S: N ⊕ V, For signed tests.
V:N ⊕ C (For N and C after the shift)
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
lsrr0; Divide r0 by 2
Words: 1 (2 bytes)
Cycles: 1
100
AVR Instruction Set
0856I–AVR–07/10
Loading...
+ hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.