You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

181 lines
6.3KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- This file documents the GNU Assembler "as".
  4. Copyright (C) 1991-2020 Free Software Foundation, Inc.
  5. Permission is granted to copy, distribute and/or modify this document
  6. under the terms of the GNU Free Documentation License, Version 1.3
  7. or any later version published by the Free Software Foundation;
  8. with no Invariant Sections, with no Front-Cover Texts, and with no
  9. Back-Cover Texts. A copy of the license is included in the
  10. section entitled "GNU Free Documentation License".
  11. -->
  12. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <title>AVR-Modifiers (Using as)</title>
  16. <meta name="description" content="AVR-Modifiers (Using as)">
  17. <meta name="keywords" content="AVR-Modifiers (Using as)">
  18. <meta name="resource-type" content="document">
  19. <meta name="distribution" content="global">
  20. <meta name="Generator" content="makeinfo">
  21. <link href="index.html#Top" rel="start" title="Top">
  22. <link href="AS-Index.html#AS-Index" rel="index" title="AS Index">
  23. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  24. <link href="AVR-Syntax.html#AVR-Syntax" rel="up" title="AVR Syntax">
  25. <link href="AVR-Opcodes.html#AVR-Opcodes" rel="next" title="AVR Opcodes">
  26. <link href="AVR_002dRegs.html#AVR_002dRegs" rel="prev" title="AVR-Regs">
  27. <style type="text/css">
  28. <!--
  29. a.summary-letter {text-decoration: none}
  30. blockquote.indentedblock {margin-right: 0em}
  31. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  32. blockquote.smallquotation {font-size: smaller}
  33. div.display {margin-left: 3.2em}
  34. div.example {margin-left: 3.2em}
  35. div.lisp {margin-left: 3.2em}
  36. div.smalldisplay {margin-left: 3.2em}
  37. div.smallexample {margin-left: 3.2em}
  38. div.smalllisp {margin-left: 3.2em}
  39. kbd {font-style: oblique}
  40. pre.display {font-family: inherit}
  41. pre.format {font-family: inherit}
  42. pre.menu-comment {font-family: serif}
  43. pre.menu-preformatted {font-family: serif}
  44. pre.smalldisplay {font-family: inherit; font-size: smaller}
  45. pre.smallexample {font-size: smaller}
  46. pre.smallformat {font-family: inherit; font-size: smaller}
  47. pre.smalllisp {font-size: smaller}
  48. span.nolinebreak {white-space: nowrap}
  49. span.roman {font-family: initial; font-weight: normal}
  50. span.sansserif {font-family: sans-serif; font-weight: normal}
  51. ul.no-bullet {list-style: none}
  52. -->
  53. </style>
  54. </head>
  55. <body lang="en">
  56. <a name="AVR_002dModifiers"></a>
  57. <div class="header">
  58. <p>
  59. Previous: <a href="AVR_002dRegs.html#AVR_002dRegs" accesskey="p" rel="prev">AVR-Regs</a>, Up: <a href="AVR-Syntax.html#AVR-Syntax" accesskey="u" rel="up">AVR Syntax</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p>
  60. </div>
  61. <hr>
  62. <a name="Relocatable-Expression-Modifiers"></a>
  63. <h4 class="subsubsection">9.5.2.3 Relocatable Expression Modifiers</h4>
  64. <a name="index-AVR-modifiers"></a>
  65. <a name="index-syntax_002c-AVR"></a>
  66. <p>The assembler supports several modifiers when using relocatable addresses
  67. in AVR instruction operands. The general syntax is the following:
  68. </p>
  69. <div class="smallexample">
  70. <pre class="smallexample">modifier(relocatable-expression)
  71. </pre></div>
  72. <dl compact="compact">
  73. <dd><a name="index-symbol-modifiers"></a>
  74. </dd>
  75. <dt><code>lo8</code></dt>
  76. <dd>
  77. <p>This modifier allows you to use bits 0 through 7 of
  78. an address expression as an 8 bit relocatable expression.
  79. </p>
  80. </dd>
  81. <dt><code>hi8</code></dt>
  82. <dd>
  83. <p>This modifier allows you to use bits 7 through 15 of an address expression
  84. as an 8 bit relocatable expression. This is useful with, for example, the
  85. AVR &lsquo;<samp>ldi</samp>&rsquo; instruction and &lsquo;<samp>lo8</samp>&rsquo; modifier.
  86. </p>
  87. <p>For example
  88. </p>
  89. <div class="smallexample">
  90. <pre class="smallexample">ldi r26, lo8(sym+10)
  91. ldi r27, hi8(sym+10)
  92. </pre></div>
  93. </dd>
  94. <dt><code>hh8</code></dt>
  95. <dd>
  96. <p>This modifier allows you to use bits 16 through 23 of
  97. an address expression as an 8 bit relocatable expression.
  98. Also, can be useful for loading 32 bit constants.
  99. </p>
  100. </dd>
  101. <dt><code>hlo8</code></dt>
  102. <dd>
  103. <p>Synonym of &lsquo;<samp>hh8</samp>&rsquo;.
  104. </p>
  105. </dd>
  106. <dt><code>hhi8</code></dt>
  107. <dd>
  108. <p>This modifier allows you to use bits 24 through 31 of
  109. an expression as an 8 bit expression. This is useful with, for example, the
  110. AVR &lsquo;<samp>ldi</samp>&rsquo; instruction and &lsquo;<samp>lo8</samp>&rsquo;, &lsquo;<samp>hi8</samp>&rsquo;, &lsquo;<samp>hlo8</samp>&rsquo;,
  111. &lsquo;<samp>hhi8</samp>&rsquo;, modifier.
  112. </p>
  113. <p>For example
  114. </p>
  115. <div class="smallexample">
  116. <pre class="smallexample">ldi r26, lo8(285774925)
  117. ldi r27, hi8(285774925)
  118. ldi r28, hlo8(285774925)
  119. ldi r29, hhi8(285774925)
  120. ; r29,r28,r27,r26 = 285774925
  121. </pre></div>
  122. </dd>
  123. <dt><code>pm_lo8</code></dt>
  124. <dd>
  125. <p>This modifier allows you to use bits 0 through 7 of
  126. an address expression as an 8 bit relocatable expression.
  127. This modifier is useful for addressing data or code from
  128. Flash/Program memory by two-byte words. The use of &lsquo;<samp>pm_lo8</samp>&rsquo;
  129. is similar to &lsquo;<samp>lo8</samp>&rsquo;.
  130. </p>
  131. </dd>
  132. <dt><code>pm_hi8</code></dt>
  133. <dd>
  134. <p>This modifier allows you to use bits 8 through 15 of
  135. an address expression as an 8 bit relocatable expression.
  136. This modifier is useful for addressing data or code from
  137. Flash/Program memory by two-byte words.
  138. </p>
  139. <p>For example, when setting the AVR &lsquo;<samp>Z</samp>&rsquo; register with the &lsquo;<samp>ldi</samp>&rsquo;
  140. instruction for subsequent use by the &lsquo;<samp>ijmp</samp>&rsquo; instruction:
  141. </p>
  142. <div class="smallexample">
  143. <pre class="smallexample">ldi r30, pm_lo8(sym)
  144. ldi r31, pm_hi8(sym)
  145. ijmp
  146. </pre></div>
  147. </dd>
  148. <dt><code>pm_hh8</code></dt>
  149. <dd>
  150. <p>This modifier allows you to use bits 15 through 23 of
  151. an address expression as an 8 bit relocatable expression.
  152. This modifier is useful for addressing data or code from
  153. Flash/Program memory by two-byte words.
  154. </p>
  155. </dd>
  156. </dl>
  157. <hr>
  158. <div class="header">
  159. <p>
  160. Previous: <a href="AVR_002dRegs.html#AVR_002dRegs" accesskey="p" rel="prev">AVR-Regs</a>, Up: <a href="AVR-Syntax.html#AVR-Syntax" accesskey="u" rel="up">AVR Syntax</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p>
  161. </div>
  162. </body>
  163. </html>