M68HC11_002dModifiers.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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-2017 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 5.2, http://www.gnu.org/software/texinfo/ -->
  13. <head>
  14. <title>Using as: M68HC11-Modifiers</title>
  15. <meta name="description" content="Using as: M68HC11-Modifiers">
  16. <meta name="keywords" content="Using as: M68HC11-Modifiers">
  17. <meta name="resource-type" content="document">
  18. <meta name="distribution" content="global">
  19. <meta name="Generator" content="makeinfo">
  20. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  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="M68HC11_002dDependent.html#M68HC11_002dDependent" rel="up" title="M68HC11-Dependent">
  25. <link href="M68HC11_002dDirectives.html#M68HC11_002dDirectives" rel="next" title="M68HC11-Directives">
  26. <link href="M68HC11_002dSyntax.html#M68HC11_002dSyntax" rel="prev" title="M68HC11-Syntax">
  27. <style type="text/css">
  28. <!--
  29. a.summary-letter {text-decoration: none}
  30. blockquote.smallquotation {font-size: smaller}
  31. div.display {margin-left: 3.2em}
  32. div.example {margin-left: 3.2em}
  33. div.indentedblock {margin-left: 3.2em}
  34. div.lisp {margin-left: 3.2em}
  35. div.smalldisplay {margin-left: 3.2em}
  36. div.smallexample {margin-left: 3.2em}
  37. div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
  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.nocodebreak {white-space:nowrap}
  49. span.nolinebreak {white-space:nowrap}
  50. span.roman {font-family:serif; font-weight:normal}
  51. span.sansserif {font-family:sans-serif; font-weight:normal}
  52. ul.no-bullet {list-style: none}
  53. -->
  54. </style>
  55. </head>
  56. <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  57. <a name="M68HC11_002dModifiers"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="M68HC11_002dDirectives.html#M68HC11_002dDirectives" accesskey="n" rel="next">M68HC11-Directives</a>, Previous: <a href="M68HC11_002dSyntax.html#M68HC11_002dSyntax" accesskey="p" rel="prev">M68HC11-Syntax</a>, Up: <a href="M68HC11_002dDependent.html#M68HC11_002dDependent" accesskey="u" rel="up">M68HC11-Dependent</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>
  61. </div>
  62. <hr>
  63. <a name="Symbolic-Operand-Modifiers-1"></a>
  64. <h4 class="subsection">9.24.3 Symbolic Operand Modifiers</h4>
  65. <a name="index-M68HC11-modifiers"></a>
  66. <a name="index-syntax_002c-M68HC11-1"></a>
  67. <p>The assembler supports several modifiers when using symbol addresses
  68. in 68HC11 and 68HC12 instruction operands. The general syntax is
  69. the following:
  70. </p>
  71. <div class="smallexample">
  72. <pre class="smallexample">%modifier(symbol)
  73. </pre></div>
  74. <dl compact="compact">
  75. <dd><a name="index-symbol-modifiers-3"></a>
  76. </dd>
  77. <dt><code>%addr</code></dt>
  78. <dd><p>This modifier indicates to the assembler and linker to use
  79. the 16-bit physical address corresponding to the symbol. This is intended
  80. to be used on memory window systems to map a symbol in the memory bank window.
  81. If the symbol is in a memory expansion part, the physical address
  82. corresponds to the symbol address within the memory bank window.
  83. If the symbol is not in a memory expansion part, this is the symbol address
  84. (using or not using the %addr modifier has no effect in that case).
  85. </p>
  86. </dd>
  87. <dt><code>%page</code></dt>
  88. <dd><p>This modifier indicates to use the memory page number corresponding
  89. to the symbol. If the symbol is in a memory expansion part, its page
  90. number is computed by the linker as a number used to map the page containing
  91. the symbol in the memory bank window. If the symbol is not in a memory
  92. expansion part, the page number is 0.
  93. </p>
  94. </dd>
  95. <dt><code>%hi</code></dt>
  96. <dd><p>This modifier indicates to use the 8-bit high part of the physical
  97. address of the symbol.
  98. </p>
  99. </dd>
  100. <dt><code>%lo</code></dt>
  101. <dd><p>This modifier indicates to use the 8-bit low part of the physical
  102. address of the symbol.
  103. </p>
  104. </dd>
  105. </dl>
  106. <p>For example a 68HC12 call to a function &lsquo;<samp>foo_example</samp>&rsquo; stored in memory
  107. expansion part could be written as follows:
  108. </p>
  109. <div class="smallexample">
  110. <pre class="smallexample">call %addr(foo_example),%page(foo_example)
  111. </pre></div>
  112. <p>and this is equivalent to
  113. </p>
  114. <div class="smallexample">
  115. <pre class="smallexample">call foo_example
  116. </pre></div>
  117. <p>And for 68HC11 it could be written as follows:
  118. </p>
  119. <div class="smallexample">
  120. <pre class="smallexample">ldab #%page(foo_example)
  121. stab _page_switch
  122. jsr %addr(foo_example)
  123. </pre></div>
  124. <hr>
  125. <div class="header">
  126. <p>
  127. Next: <a href="M68HC11_002dDirectives.html#M68HC11_002dDirectives" accesskey="n" rel="next">M68HC11-Directives</a>, Previous: <a href="M68HC11_002dSyntax.html#M68HC11_002dSyntax" accesskey="p" rel="prev">M68HC11-Syntax</a>, Up: <a href="M68HC11_002dDependent.html#M68HC11_002dDependent" accesskey="u" rel="up">M68HC11-Dependent</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>
  128. </div>
  129. </body>
  130. </html>