c-pj.texi 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @c Copyright (C) 1999-2015 Free Software Foundation, Inc.
  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. @cindex PJ support
  8. @menu
  9. * PJ Options:: Options
  10. * PJ Syntax:: PJ Syntax
  11. @end menu
  12. @node PJ Options
  13. @section Options
  14. @cindex PJ options
  15. @cindex options, PJ
  16. @code{@value{AS}} has two additional command-line options for the picoJava
  17. architecture.
  18. @table @code
  19. @item -ml
  20. This option selects little endian data output.
  21. @item -mb
  22. This option selects big endian data output.
  23. @end table
  24. @node PJ Syntax
  25. @section PJ Syntax
  26. @menu
  27. * PJ-Chars:: Special Characters
  28. @end menu
  29. @node PJ-Chars
  30. @subsection Special Characters
  31. @cindex line comment character, PJ
  32. @cindex PJ line comment character
  33. The presence of a @samp{!} or @samp{/} on a line indicates the start
  34. of a comment that extends to the end of the current line.
  35. If a @samp{#} appears as the first character of a line then the whole
  36. line is treated as a comment, but in this case the line could also be
  37. a logical line number directive (@pxref{Comments}) or a preprocessor
  38. control command (@pxref{Preprocessing}).
  39. @cindex line separator, PJ
  40. @cindex statement separator, PJ
  41. @cindex PJ line separator
  42. The @samp{;} character can be used to separate statements on the same
  43. line.