]>
Commit | Line | Data |
---|---|---|
7c31ae13 | 1 | @c Copyright 1999, 2002, 2011 Free Software Foundation, Inc. |
041dd5a9 ILT |
2 | @c This is part of the GAS manual. |
3 | @c For copying conditions, see the file as.texinfo. | |
4 | @page | |
5 | @node PJ-Dependent | |
6 | @chapter picoJava Dependent Features | |
7 | ||
8 | @cindex PJ support | |
9 | @menu | |
10 | * PJ Options:: Options | |
7c31ae13 | 11 | * PJ Syntax:: PJ Syntax |
041dd5a9 ILT |
12 | @end menu |
13 | ||
14 | @node PJ Options | |
15 | @section Options | |
16 | ||
17 | @cindex PJ options | |
18 | @cindex options, PJ | |
062b7c0c | 19 | @code{@value{AS}} has two additional command-line options for the picoJava |
041dd5a9 ILT |
20 | architecture. |
21 | @table @code | |
22 | @item -ml | |
23 | This option selects little endian data output. | |
24 | ||
25 | @item -mb | |
26 | This option selects big endian data output. | |
27 | @end table | |
28 | ||
7c31ae13 NC |
29 | @node PJ Syntax |
30 | @section PJ Syntax | |
31 | @menu | |
32 | * PJ-Chars:: Special Characters | |
33 | @end menu | |
34 | ||
35 | @node PJ-Chars | |
36 | @subsection Special Characters | |
37 | ||
38 | @cindex line comment character, PJ | |
39 | @cindex PJ line comment character | |
40 | The presence of a @samp{!} or @samp{/} on a line indicates the start | |
41 | of a comment that extends to the end of the current line. | |
42 | ||
43 | If a @samp{#} appears as the first character of a line then the whole | |
44 | line is treated as a comment, but in this case the line could also be | |
45 | a logical line number directive (@pxref{Comments}) or a preprocessor | |
46 | control command (@pxref{Preprocessing}). | |
041dd5a9 | 47 | |
7c31ae13 NC |
48 | @cindex line separator, PJ |
49 | @cindex statement separator, PJ | |
50 | @cindex PJ line separator | |
51 | The @samp{;} character can be used to separate statements on the same | |
52 | line. |