gas: blackfin: add support for BF592 processors
[deliverable/binutils-gdb.git] / gas / doc / c-avr.texi
CommitLineData
aa820537 1@c Copyright 2006, 2007, 2008, 2009
8473f7a4
DC
2@c Free Software Foundation, Inc.
3@c This is part of the GAS manual.
4@c For copying conditions, see the file as.texinfo.
5
6@ifset GENERIC
7@page
8@node AVR-Dependent
9@chapter AVR Dependent Features
10@end ifset
11
12@ifclear GENERIC
13@node Machine Dependencies
14@chapter AVR Dependent Features
15@end ifclear
16
17@cindex AVR support
18@menu
19* AVR Options:: Options
20* AVR Syntax:: Syntax
21* AVR Opcodes:: Opcodes
22@end menu
23
24@node AVR Options
25@section Options
26@cindex AVR options (none)
27@cindex options for AVR (none)
28
29@table @code
30
31@cindex @code{-mmcu=} command line option, AVR
32@item -mmcu=@var{mcu}
33Specify ATMEL AVR instruction set or MCU type.
34
35Instruction set avr1 is for the minimal AVR core, not supported by the C
7f5ba16d 36compiler, only for assembler programs (MCU types: at90s1200,
8473f7a4
DC
37attiny11, attiny12, attiny15, attiny28).
38
39Instruction set avr2 (default) is for the classic AVR core with up to
7b21ac3f
EW
408K program memory space (MCU types: at90s2313, at90s2323, at90s2333, at90s2343,
41attiny22, attiny26, at90s4414, at90s4433, at90s4434, at90s8515, at90c8534,
42at90s8535).
43
44Instruction set avr25 is for the classic AVR core with up to 8K program memory
45space plus the MOVW instruction (MCU types: attiny13, attiny13a, attiny2313,
8453da2e 46attiny2313a, attiny24, attiny24a, attiny4313, attiny44, attiny44a, attiny84,
e760a81b
EW
47attiny84a, attiny25, attiny45, attiny85, attiny261, attiny261a, attiny461,
48attiny461a, attiny861, attiny861a, attiny87, attiny43u, attiny48, attiny88,
49at86rf401, ata6289).
8473f7a4
DC
50
51Instruction set avr3 is for the classic AVR core with up to 128K program
7b21ac3f
EW
52memory space (MCU types: at43usb355, at76c711).
53
54Instruction set avr31 is for the classic AVR core with exactly 128K program
55memory space (MCU types: atmega103, at43usb320).
56
57Instruction set avr35 is for classic AVR core plus MOVW, CALL, and JMP
e760a81b 58instructions (MCU types: attiny167, at90usb82, at90usb162, atmega8u2,
11908008 59atmega16u2, atmega32u2).
8473f7a4
DC
60
61Instruction set avr4 is for the enhanced AVR core with up to 8K program
e760a81b
EW
62memory space (MCU types: atmega48, atmega48a, atmega48p, atmega8, atmega88,
63atmega88a, atmega88p, atmega88pa, atmega8515, atmega8535, atmega8hva, at90pwm1,
64at90pwm2, at90pwm2b, at90pwm3, at90pwm3b, at90pwm81).
8473f7a4
DC
65
66Instruction set avr5 is for the enhanced AVR core with up to 128K program
e760a81b
EW
67memory space (MCU types: atmega16, atmega16a, atmega161, atmega162, atmega163,
68atmega164a, atmega164p, atmega165, atmega165a, atmega165p, atmega168,
69atmega168a, atmega168p, atmega169, atmega169a, atmega169p, atmega169pa,
70atmega32, atmega323, atmega324a, atmega324p, atmega325, atmega325a, atmega325p,
71atmega3250, atmega3250a, atmega3250p, atmega328, atmega328p, atmega329,
72atmega329a, atmega329p, atmega329pa, atmega3290, atmega3290a, atmega3290p,
73atmega406, atmega64, atmega640, atmega644, atmega644a, atmega644p, atmega644pa,
74atmega645, atmega645a, atmega645p, atmega6450, atmega6450a, atmega6450p,
75atmega649, atmega649a, atmega649p, atmega6490, atmega6490a, atmega6490p,
76atmega16hva, atmega16hva2, atmega16hvb, atmega32hvb, atmega64hve, at90can32,
77at90can64, at90pwm216, at90pwm316, atmega32c1, atmega64c1, atmega16m1,
78atmega32m1, atmega64m1, atmega16u4, atmega32u4, atmega32u6, at90usb646,
79at90usb647, at94k, at90scr100).
7b21ac3f
EW
80
81Instruction set avr51 is for the enhanced AVR core with exactly 128K program
82memory space (MCU types: atmega128, atmega1280, atmega1281, atmega1284p,
e760a81b 83atmega128rfa1, at90can128, at90usb1286, at90usb1287, m3000).
7b21ac3f
EW
84
85Instruction set avr6 is for the enhanced AVR core with a 3-byte PC (MCU types:
86atmega2560, atmega2561).
8473f7a4
DC
87
88@cindex @code{-mall-opcodes} command line option, AVR
89@item -mall-opcodes
90Accept all AVR opcodes, even if not supported by @code{-mmcu}.
91
92@cindex @code{-mno-skip-bug} command line option, AVR
93@item -mno-skip-bug
94This option disable warnings for skipping two-word instructions.
95
96@cindex @code{-mno-wrap} command line option, AVR
97@item -mno-wrap
98This option reject @code{rjmp/rcall} instructions with 8K wrap-around.
99
100@end table
101
102
103@node AVR Syntax
104@section Syntax
105@menu
106* AVR-Chars:: Special Characters
107* AVR-Regs:: Register Names
108* AVR-Modifiers:: Relocatable Expression Modifiers
109@end menu
110
111@node AVR-Chars
112@subsection Special Characters
113
114@cindex line comment character, AVR
115@cindex AVR line comment character
116
117The presence of a @samp{;} on a line indicates the start of a comment
118that extends to the end of the current line. If a @samp{#} appears as
119the first character of a line, the whole line is treated as a comment.
120
121@cindex line separator, AVR
122@cindex statement separator, AVR
123@cindex AVR line separator
124
125The @samp{$} character can be used instead of a newline to separate
126statements.
127
128@node AVR-Regs
129@subsection Register Names
130
131@cindex AVR register names
132@cindex register names, AVR
133
b45619c0 134The AVR has 32 x 8-bit general purpose working registers @samp{r0},
8473f7a4
DC
135@samp{r1}, ... @samp{r31}.
136Six of the 32 registers can be used as three 16-bit indirect address
137register pointers for Data Space addressing. One of the these address
138pointers can also be used as an address pointer for look up tables in
139Flash program memory. These added function registers are the 16-bit
140@samp{X}, @samp{Y} and @samp{Z} - registers.
141
142@smallexample
143X = @r{r26:r27}
144Y = @r{r28:r29}
145Z = @r{r30:r31}
146@end smallexample
147
148@node AVR-Modifiers
149@subsection Relocatable Expression Modifiers
150
151@cindex AVR modifiers
152@cindex syntax, AVR
153
154The assembler supports several modifiers when using relocatable addresses
155in AVR instruction operands. The general syntax is the following:
156
157@smallexample
158modifier(relocatable-expression)
159@end smallexample
160
161@table @code
162@cindex symbol modifiers
163
164@item lo8
165
166This modifier allows you to use bits 0 through 7 of
167an address expression as 8 bit relocatable expression.
168
169@item hi8
170
171This modifier allows you to use bits 7 through 15 of an address expression
172as 8 bit relocatable expression. This is useful with, for example, the
173AVR @samp{ldi} instruction and @samp{lo8} modifier.
174
175For example
176
177@smallexample
178ldi r26, lo8(sym+10)
179ldi r27, hi8(sym+10)
180@end smallexample
181
182@item hh8
183
184This modifier allows you to use bits 16 through 23 of
185an address expression as 8 bit relocatable expression.
186Also, can be useful for loading 32 bit constants.
187
188@item hlo8
189
190Synonym of @samp{hh8}.
191
192@item hhi8
193
194This modifier allows you to use bits 24 through 31 of
195an expression as 8 bit expression. This is useful with, for example, the
196AVR @samp{ldi} instruction and @samp{lo8}, @samp{hi8}, @samp{hlo8},
197@samp{hhi8}, modifier.
198
199For example
200
201@smallexample
202ldi r26, lo8(285774925)
203ldi r27, hi8(285774925)
204ldi r28, hlo8(285774925)
205ldi r29, hhi8(285774925)
206; r29,r28,r27,r26 = 285774925
207@end smallexample
208
209@item pm_lo8
210
211This modifier allows you to use bits 0 through 7 of
212an address expression as 8 bit relocatable expression.
213This modifier useful for addressing data or code from
214Flash/Program memory. The using of @samp{pm_lo8} similar
215to @samp{lo8}.
216
217@item pm_hi8
218
219This modifier allows you to use bits 8 through 15 of
220an address expression as 8 bit relocatable expression.
221This modifier useful for addressing data or code from
222Flash/Program memory.
223
224@item pm_hh8
225
226This modifier allows you to use bits 15 through 23 of
227an address expression as 8 bit relocatable expression.
228This modifier useful for addressing data or code from
229Flash/Program memory.
230
231@end table
232
233@node AVR Opcodes
234@section Opcodes
235
236@cindex AVR opcode summary
237@cindex opcode summary, AVR
238@cindex mnemonics, AVR
239@cindex instruction summary, AVR
240For detailed information on the AVR machine instruction set, see
241@url{www.atmel.com/products/AVR}.
242
243@code{@value{AS}} implements all the standard AVR opcodes.
244The following table summarizes the AVR opcodes, and their arguments.
245
246@smallexample
247@i{Legend:}
248 r @r{any register}
249 d @r{`ldi' register (r16-r31)}
250 v @r{`movw' even register (r0, r2, ..., r28, r30)}
251 a @r{`fmul' register (r16-r23)}
252 w @r{`adiw' register (r24,r26,r28,r30)}
253 e @r{pointer registers (X,Y,Z)}
254 b @r{base pointer register and displacement ([YZ]+disp)}
255 z @r{Z pointer register (for [e]lpm Rd,Z[+])}
256 M @r{immediate value from 0 to 255}
257 n @r{immediate value from 0 to 255 ( n = ~M ). Relocation impossible}
258 s @r{immediate value from 0 to 7}
259 P @r{Port address value from 0 to 63. (in, out)}
260 p @r{Port address value from 0 to 31. (cbi, sbi, sbic, sbis)}
261 K @r{immediate value from 0 to 63 (used in `adiw', `sbiw')}
262 i @r{immediate value}
263 l @r{signed pc relative offset from -64 to 63}
264 L @r{signed pc relative offset from -2048 to 2047}
265 h @r{absolute code address (call, jmp)}
266 S @r{immediate value from 0 to 7 (S = s << 4)}
267 ? @r{use this opcode entry if no parameters, else use next opcode entry}
268
2691001010010001000 clc
2701001010011011000 clh
2711001010011111000 cli
2721001010010101000 cln
2731001010011001000 cls
2741001010011101000 clt
2751001010010111000 clv
2761001010010011000 clz
2771001010000001000 sec
2781001010001011000 seh
2791001010001111000 sei
2801001010000101000 sen
2811001010001001000 ses
2821001010001101000 set
2831001010000111000 sev
2841001010000011000 sez
285100101001SSS1000 bclr S
286100101000SSS1000 bset S
2871001010100001001 icall
2881001010000001001 ijmp
2891001010111001000 lpm ?
2901001000ddddd010+ lpm r,z
2911001010111011000 elpm ?
2921001000ddddd011+ elpm r,z
2930000000000000000 nop
2941001010100001000 ret
2951001010100011000 reti
2961001010110001000 sleep
2971001010110011000 break
2981001010110101000 wdr
2991001010111101000 spm
300000111rdddddrrrr adc r,r
301000011rdddddrrrr add r,r
302001000rdddddrrrr and r,r
303000101rdddddrrrr cp r,r
304000001rdddddrrrr cpc r,r
305000100rdddddrrrr cpse r,r
306001001rdddddrrrr eor r,r
307001011rdddddrrrr mov r,r
308100111rdddddrrrr mul r,r
309001010rdddddrrrr or r,r
310000010rdddddrrrr sbc r,r
311000110rdddddrrrr sub r,r
312001001rdddddrrrr clr r
313000011rdddddrrrr lsl r
314000111rdddddrrrr rol r
315001000rdddddrrrr tst r
3160111KKKKddddKKKK andi d,M
3170111KKKKddddKKKK cbr d,n
3181110KKKKddddKKKK ldi d,M
31911101111dddd1111 ser d
3200110KKKKddddKKKK ori d,M
3210110KKKKddddKKKK sbr d,M
3220011KKKKddddKKKK cpi d,M
3230100KKKKddddKKKK sbci d,M
3240101KKKKddddKKKK subi d,M
3251111110rrrrr0sss sbrc r,s
3261111111rrrrr0sss sbrs r,s
3271111100ddddd0sss bld r,s
3281111101ddddd0sss bst r,s
32910110PPdddddPPPP in r,P
33010111PPrrrrrPPPP out P,r
33110010110KKddKKKK adiw w,K
33210010111KKddKKKK sbiw w,K
33310011000pppppsss cbi p,s
33410011010pppppsss sbi p,s
33510011001pppppsss sbic p,s
33610011011pppppsss sbis p,s
337111101lllllll000 brcc l
338111100lllllll000 brcs l
339111100lllllll001 breq l
340111101lllllll100 brge l
341111101lllllll101 brhc l
342111100lllllll101 brhs l
343111101lllllll111 brid l
344111100lllllll111 brie l
345111100lllllll000 brlo l
346111100lllllll100 brlt l
347111100lllllll010 brmi l
348111101lllllll001 brne l
349111101lllllll010 brpl l
350111101lllllll000 brsh l
351111101lllllll110 brtc l
352111100lllllll110 brts l
353111101lllllll011 brvc l
354111100lllllll011 brvs l
355111101lllllllsss brbc s,l
356111100lllllllsss brbs s,l
3571101LLLLLLLLLLLL rcall L
3581100LLLLLLLLLLLL rjmp L
3591001010hhhhh111h call h
3601001010hhhhh110h jmp h
3611001010rrrrr0101 asr r
3621001010rrrrr0000 com r
3631001010rrrrr1010 dec r
3641001010rrrrr0011 inc r
3651001010rrrrr0110 lsr r
3661001010rrrrr0001 neg r
3671001000rrrrr1111 pop r
3681001001rrrrr1111 push r
3691001010rrrrr0111 ror r
3701001010rrrrr0010 swap r
37100000001ddddrrrr movw v,v
37200000010ddddrrrr muls d,d
373000000110ddd0rrr mulsu a,a
374000000110ddd1rrr fmul a,a
375000000111ddd0rrr fmuls a,a
376000000111ddd1rrr fmulsu a,a
3771001001ddddd0000 sts i,r
3781001000ddddd0000 lds r,i
37910o0oo0dddddbooo ldd r,b
380100!000dddddee-+ ld r,e
38110o0oo1rrrrrbooo std b,r
382100!001rrrrree-+ st e,r
3831001010100011001 eicall
3841001010000011001 eijmp
385@end smallexample
This page took 0.192027 seconds and 4 git commands to generate.