PR gas/12390
[deliverable/binutils-gdb.git] / gas / doc / c-m68hc11.texi
CommitLineData
7c31ae13
NC
1@c Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2003,
2@c 2006, 2011
f7e42eb4 3@c Free Software Foundation, Inc.
60bcf0fa
NC
4@c This is part of the GAS manual.
5@c For copying conditions, see the file as.texinfo.
6@ifset GENERIC
7@page
8@node M68HC11-Dependent
9@chapter M68HC11 and M68HC12 Dependent Features
10@end ifset
11@ifclear GENERIC
12@node Machine Dependencies
13@chapter M68HC11 and M68HC12 Dependent Features
14@end ifclear
15
16@cindex M68HC11 and M68HC12 support
17@menu
18* M68HC11-Opts:: M68HC11 and M68HC12 Options
19* M68HC11-Syntax:: Syntax
35b55ed2
SC
20* M68HC11-Modifiers:: Symbolic Operand Modifiers
21* M68HC11-Directives:: Assembler Directives
60bcf0fa
NC
22* M68HC11-Float:: Floating Point
23* M68HC11-opcodes:: Opcodes
24@end menu
25
26@node M68HC11-Opts
27@section M68HC11 and M68HC12 Options
28
29@cindex options, M68HC11
30@cindex M68HC11 options
35b55ed2 31The Motorola 68HC11 and 68HC12 version of @code{@value{AS}} have a few machine
60bcf0fa
NC
32dependent options.
33
35b55ed2
SC
34@table @code
35
60bcf0fa 36@cindex @samp{-m68hc11}
35b55ed2 37@item -m68hc11
60bcf0fa
NC
38This option switches the assembler in the M68HC11 mode. In this mode,
39the assembler only accepts 68HC11 operands and mnemonics. It produces
40code for the 68HC11.
41
42@cindex @samp{-m68hc12}
35b55ed2 43@item -m68hc12
60bcf0fa
NC
44This option switches the assembler in the M68HC12 mode. In this mode,
45the assembler also accepts 68HC12 operands and mnemonics. It produces
35b55ed2 46code for the 68HC12. A few 68HC11 instructions are replaced by
60bcf0fa
NC
47some 68HC12 instructions as recommended by Motorola specifications.
48
35b55ed2
SC
49@cindex @samp{-m68hcs12}
50@item -m68hcs12
51This option switches the assembler in the M68HCS12 mode. This mode is
52similar to @samp{-m68hc12} but specifies to assemble for the 68HCS12
53series. The only difference is on the assembling of the @samp{movb}
54and @samp{movw} instruction when a PC-relative operand is used.
55
56@cindex @samp{-mshort}
57@item -mshort
58This option controls the ABI and indicates to use a 16-bit integer ABI.
59It has no effect on the assembled instructions.
60This is the default.
61
62@cindex @samp{-mlong}
63@item -mlong
64This option controls the ABI and indicates to use a 32-bit integer ABI.
65
66@cindex @samp{-mshort-double}
67@item -mshort-double
68This option controls the ABI and indicates to use a 32-bit float ABI.
69This is the default.
70
71@cindex @samp{-mlong-double}
72@item -mlong-double
73This option controls the ABI and indicates to use a 64-bit float ABI.
74
60bcf0fa 75@cindex @samp{--strict-direct-mode}
35b55ed2 76@item --strict-direct-mode
60bcf0fa
NC
77You can use the @samp{--strict-direct-mode} option to disable
78the automatic translation of direct page mode addressing into
79extended mode when the instruction does not support direct mode.
80For example, the @samp{clr} instruction does not support direct page
81mode addressing. When it is used with the direct page mode,
82@code{@value{AS}} will ignore it and generate an absolute addressing.
83This option prevents @code{@value{AS}} from doing this, and the wrong
84usage of the direct page mode will raise an error.
85
1370e33d
NC
86@cindex @samp{--short-branches}
87@item --short-branches
88The @samp{--short-branches} option turns off the translation of
60bcf0fa
NC
89relative branches into absolute branches when the branch offset is
90out of range. By default @code{@value{AS}} transforms the relative
91branch (@samp{bsr}, @samp{bgt}, @samp{bge}, @samp{beq}, @samp{bne},
92@samp{ble}, @samp{blt}, @samp{bhi}, @samp{bcc}, @samp{bls},
93@samp{bcs}, @samp{bmi}, @samp{bvs}, @samp{bvs}, @samp{bra}) into
94an absolute branch when the offset is out of the -128 .. 127 range.
95In that case, the @samp{bsr} instruction is translated into a
96@samp{jsr}, the @samp{bra} instruction is translated into a
1370e33d 97@samp{jmp} and the conditional branches instructions are inverted and
60bcf0fa
NC
98followed by a @samp{jmp}. This option disables these translations
99and @code{@value{AS}} will generate an error if a relative branch
100is out of range. This option does not affect the optimization
101associated to the @samp{jbra}, @samp{jbsr} and @samp{jbXX} pseudo opcodes.
102
1370e33d
NC
103@cindex @samp{--force-long-branches}
104@item --force-long-branches
105The @samp{--force-long-branches} option forces the translation of
60bcf0fa
NC
106relative branches into absolute branches. This option does not affect
107the optimization associated to the @samp{jbra}, @samp{jbsr} and
108@samp{jbXX} pseudo opcodes.
109
110@cindex @samp{--print-insn-syntax}
35b55ed2 111@item --print-insn-syntax
60bcf0fa
NC
112You can use the @samp{--print-insn-syntax} option to obtain the
113syntax description of the instruction when an error is detected.
114
115@cindex @samp{--print-opcodes}
35b55ed2 116@item --print-opcodes
60bcf0fa
NC
117The @samp{--print-opcodes} option prints the list of all the
118instructions with their syntax. The first item of each line
119represents the instruction name and the rest of the line indicates
120the possible operands for that instruction. The list is printed
121in alphabetical order. Once the list is printed @code{@value{AS}}
122exits.
123
124@cindex @samp{--generate-example}
35b55ed2 125@item --generate-example
60bcf0fa
NC
126The @samp{--generate-example} option is similar to @samp{--print-opcodes}
127but it generates an example for each instruction instead.
35b55ed2 128@end table
60bcf0fa
NC
129
130@node M68HC11-Syntax
131@section Syntax
132
133@cindex M68HC11 syntax
134@cindex syntax, M68HC11
135
136In the M68HC11 syntax, the instruction name comes first and it may
137be followed by one or several operands (up to three). Operands are
138separated by comma (@samp{,}). In the normal mode,
139@code{@value{AS}} will complain if too many operands are specified for
140a given instruction. In the MRI mode (turned on with @samp{-M} option),
141it will treat them as comments. Example:
142
143@smallexample
144inx
145lda #23
146bset 2,x #4
147brclr *bot #8 foo
148@end smallexample
149
7c31ae13
NC
150@cindex line comment character, M68HC11
151@cindex M68HC11 line comment character
152The presence of a @samp{;} character or a @samp{!} character anywhere
153on a line indicates the start of a comment that extends to the end of
154that line.
155
156A @samp{*} or a @samp{#} character at the start of a line also
157introduces a line comment, but these characters do not work elsewhere
158on the line. If the first character of the line is a @samp{#} then as
159well as starting a comment, the line could also be logical line number
160directive (@pxref{Comments}) or a preprocessor control command
161(@pxref{Preprocessing}).
162
163@cindex line separator, M68HC11
164@cindex statement separator, M68HC11
165@cindex M68HC11 line separator
166The M68HC11 assembler does not currently support a line separator
167character.
168
60bcf0fa
NC
169@cindex M68HC11 addressing modes
170@cindex addressing modes, M68HC11
35b55ed2 171The following addressing modes are understood for 68HC11 and 68HC12:
60bcf0fa
NC
172@table @dfn
173@item Immediate
174@samp{#@var{number}}
175
176@item Address Register
177@samp{@var{number},X}, @samp{@var{number},Y}
178
179The @var{number} may be omitted in which case 0 is assumed.
180
181@item Direct Addressing mode
182@samp{*@var{symbol}}, or @samp{*@var{digits}}
183
184@item Absolute
185@samp{@var{symbol}}, or @samp{@var{digits}}
186@end table
187
35b55ed2
SC
188The M68HC12 has other more complex addressing modes. All of them
189are supported and they are represented below:
190
191@table @dfn
192@item Constant Offset Indexed Addressing Mode
193@samp{@var{number},@var{reg}}
194
195The @var{number} may be omitted in which case 0 is assumed.
196The register can be either @samp{X}, @samp{Y}, @samp{SP} or
197@samp{PC}. The assembler will use the smaller post-byte definition
198according to the constant value (5-bit constant offset, 9-bit constant
199offset or 16-bit constant offset). If the constant is not known by
200the assembler it will use the 16-bit constant offset post-byte and the value
201will be resolved at link time.
202
203@item Offset Indexed Indirect
204@samp{[@var{number},@var{reg}]}
205
206The register can be either @samp{X}, @samp{Y}, @samp{SP} or @samp{PC}.
207
208@item Auto Pre-Increment/Pre-Decrement/Post-Increment/Post-Decrement
209@samp{@var{number},-@var{reg}}
210@samp{@var{number},+@var{reg}}
211@samp{@var{number},@var{reg}-}
212@samp{@var{number},@var{reg}+}
213
214The number must be in the range @samp{-8}..@samp{+8} and must not be 0.
215The register can be either @samp{X}, @samp{Y}, @samp{SP} or @samp{PC}.
216
217@item Accumulator Offset
218@samp{@var{acc},@var{reg}}
219
220The accumulator register can be either @samp{A}, @samp{B} or @samp{D}.
221The register can be either @samp{X}, @samp{Y}, @samp{SP} or @samp{PC}.
222
223@item Accumulator D offset indexed-indirect
224@samp{[D,@var{reg}]}
225
226The register can be either @samp{X}, @samp{Y}, @samp{SP} or @samp{PC}.
227
228@end table
229
230For example:
231
232@smallexample
233ldab 1024,sp
234ldd [10,x]
235orab 3,+x
236stab -2,y-
237ldx a,pc
238sty [d,sp]
239@end smallexample
240
241
242@node M68HC11-Modifiers
243@section Symbolic Operand Modifiers
244
245@cindex M68HC11 modifiers
246@cindex syntax, M68HC11
247
248The assembler supports several modifiers when using symbol addresses
249in 68HC11 and 68HC12 instruction operands. The general syntax is
250the following:
251
252@smallexample
253%modifier(symbol)
254@end smallexample
255
256@table @code
257@cindex symbol modifiers
258@item %addr
259This modifier indicates to the assembler and linker to use
260the 16-bit physical address corresponding to the symbol. This is intended
261to be used on memory window systems to map a symbol in the memory bank window.
262If the symbol is in a memory expansion part, the physical address
263corresponds to the symbol address within the memory bank window.
264If the symbol is not in a memory expansion part, this is the symbol address
265(using or not using the %addr modifier has no effect in that case).
266
267@item %page
268This modifier indicates to use the memory page number corresponding
269to the symbol. If the symbol is in a memory expansion part, its page
270number is computed by the linker as a number used to map the page containing
271the symbol in the memory bank window. If the symbol is not in a memory
272expansion part, the page number is 0.
273
274@item %hi
275This modifier indicates to use the 8-bit high part of the physical
276address of the symbol.
277
278@item %lo
279This modifier indicates to use the 8-bit low part of the physical
280address of the symbol.
281
282@end table
283
284For example a 68HC12 call to a function @samp{foo_example} stored in memory
285expansion part could be written as follows:
286
287@smallexample
288call %addr(foo_example),%page(foo_example)
289@end smallexample
290
291and this is equivalent to
292
293@smallexample
294call foo_example
295@end smallexample
296
297And for 68HC11 it could be written as follows:
298
299@smallexample
300ldab #%page(foo_example)
301stab _page_switch
302jsr %addr(foo_example)
303@end smallexample
304
305@node M68HC11-Directives
306@section Assembler Directives
307
308@cindex assembler directives, M68HC11
309@cindex assembler directives, M68HC12
310@cindex M68HC11 assembler directives
311@cindex M68HC12 assembler directives
312
313The 68HC11 and 68HC12 version of @code{@value{AS}} have the following
314specific assembler directives:
315
316@table @code
317@item .relax
318@cindex assembler directive .relax, M68HC11
319@cindex M68HC11 assembler directive .relax
320The relax directive is used by the @samp{GNU Compiler} to emit a specific
321relocation to mark a group of instructions for linker relaxation.
322The sequence of instructions within the group must be known to the linker
323so that relaxation can be performed.
324
325@item .mode [mshort|mlong|mshort-double|mlong-double]
326@cindex assembler directive .mode, M68HC11
327@cindex M68HC11 assembler directive .mode
328This directive specifies the ABI. It overrides the @samp{-mshort},
329@samp{-mlong}, @samp{-mshort-double} and @samp{-mlong-double} options.
330
331@item .far @var{symbol}
332@cindex assembler directive .far, M68HC11
333@cindex M68HC11 assembler directive .far
334This directive marks the symbol as a @samp{far} symbol meaning that it
335uses a @samp{call/rtc} calling convention as opposed to @samp{jsr/rts}.
336During a final link, the linker will identify references to the @samp{far}
337symbol and will verify the proper calling convention.
338
339@item .interrupt @var{symbol}
340@cindex assembler directive .interrupt, M68HC11
341@cindex M68HC11 assembler directive .interrupt
342This directive marks the symbol as an interrupt entry point.
343This information is then used by the debugger to correctly unwind the
344frame across interrupts.
345
346@item .xrefb @var{symbol}
347@cindex assembler directive .xrefb, M68HC11
348@cindex M68HC11 assembler directive .xrefb
349This directive is defined for compatibility with the
350@samp{Specification for Motorola 8 and 16-Bit Assembly Language Input
351Standard} and is ignored.
352
353@end table
354
60bcf0fa
NC
355@node M68HC11-Float
356@section Floating Point
357
358@cindex floating point, M68HC11
359@cindex M68HC11 floating point
360Packed decimal (P) format floating literals are not supported.
361Feel free to add the code!
362
363The floating point formats generated by directives are these.
364
365@table @code
366@cindex @code{float} directive, M68HC11
367@item .float
368@code{Single} precision floating point constants.
369
370@cindex @code{double} directive, M68HC11
371@item .double
372@code{Double} precision floating point constants.
373
374@cindex @code{extend} directive M68HC11
375@cindex @code{ldouble} directive M68HC11
376@item .extend
377@itemx .ldouble
378@code{Extended} precision (@code{long double}) floating point constants.
379@end table
380
381@need 2000
382@node M68HC11-opcodes
383@section Opcodes
384
385@cindex M68HC11 opcodes
386@cindex opcodes, M68HC11
387@cindex instruction set, M68HC11
388
389@menu
390* M68HC11-Branch:: Branch Improvement
391@end menu
392
393@node M68HC11-Branch
394@subsection Branch Improvement
395
396@cindex pseudo-opcodes, M68HC11
397@cindex M68HC11 pseudo-opcodes
398@cindex branch improvement, M68HC11
399@cindex M68HC11 branch improvement
400
401Certain pseudo opcodes are permitted for branch instructions.
402They expand to the shortest branch instruction that reach the
403target. Generally these mnemonics are made by prepending @samp{j} to
404the start of Motorola mnemonic. These pseudo opcodes are not affected
1370e33d 405by the @samp{--short-branches} or @samp{--force-long-branches} options.
60bcf0fa
NC
406
407The following table summarizes the pseudo-operations.
408
409@smallexample
35b55ed2
SC
410 Displacement Width
411 +-------------------------------------------------------------+
412 | Options |
1370e33d 413 | --short-branches --force-long-branches |
35b55ed2
SC
414 +--------------------------+----------------------------------+
415 Op |BYTE WORD | BYTE WORD |
416 +--------------------------+----------------------------------+
417 bsr | bsr <pc-rel> <error> | jsr <abs> |
418 bra | bra <pc-rel> <error> | jmp <abs> |
419jbsr | bsr <pc-rel> jsr <abs> | bsr <pc-rel> jsr <abs> |
420jbra | bra <pc-rel> jmp <abs> | bra <pc-rel> jmp <abs> |
421 bXX | bXX <pc-rel> <error> | bNX +3; jmp <abs> |
422jbXX | bXX <pc-rel> bNX +3; | bXX <pc-rel> bNX +3; jmp <abs> |
423 | jmp <abs> | |
424 +--------------------------+----------------------------------+
60bcf0fa
NC
425XX: condition
426NX: negative of condition XX
427
428@end smallexample
429
430@table @code
431@item jbsr
432@itemx jbra
433These are the simplest jump pseudo-operations; they always map to one
434particular machine instruction, depending on the displacement to the
435branch target.
436
437@item jb@var{XX}
438Here, @samp{jb@var{XX}} stands for an entire family of pseudo-operations,
439where @var{XX} is a conditional branch or condition-code test. The full
440list of pseudo-ops in this family is:
441@smallexample
442 jbcc jbeq jbge jbgt jbhi jbvs jbpl jblo
443 jbcs jbne jblt jble jbls jbvc jbmi
444@end smallexample
445
446For the cases of non-PC relative displacements and long displacements,
447@code{@value{AS}} issues a longer code fragment in terms of
448@var{NX}, the opposite condition to @var{XX}. For example, for the
449non-PC relative case:
450@smallexample
451 jb@var{XX} foo
452@end smallexample
453gives
454@smallexample
455 b@var{NX}s oof
456 jmp foo
457 oof:
458@end smallexample
459
460@end table
461
462
This page took 0.447888 seconds and 4 git commands to generate.