neingeist
/
arduinisten
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

79 lines
4.5 KiB
HTML

<html lang="en">
<head>
<title>M68HC11-Directives - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.7">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="M68HC11_002dDependent.html#M68HC11_002dDependent" title="M68HC11-Dependent">
<link rel="prev" href="M68HC11_002dModifiers.html#M68HC11_002dModifiers" title="M68HC11-Modifiers">
<link rel="next" href="M68HC11_002dFloat.html#M68HC11_002dFloat" title="M68HC11-Float">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002,
2006, 2007 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation;
with no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
man end-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family: serif; font-weight: normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="M68HC11_002dDirectives"></a>Next:&nbsp;<a rel="next" accesskey="n" href="M68HC11_002dFloat.html#M68HC11_002dFloat">M68HC11-Float</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="M68HC11_002dModifiers.html#M68HC11_002dModifiers">M68HC11-Modifiers</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="M68HC11_002dDependent.html#M68HC11_002dDependent">M68HC11-Dependent</a>
<hr><br>
</div>
<h4 class="subsection">9.21.4 Assembler Directives</h4>
<p><a name="index-assembler-directives_002c-M68HC11-1166"></a><a name="index-assembler-directives_002c-M68HC12-1167"></a><a name="index-M68HC11-assembler-directives-1168"></a><a name="index-M68HC12-assembler-directives-1169"></a>
The 68HC11 and 68HC12 version of <code>as</code> have the following
specific assembler directives:
<dl>
<dt><code>.relax</code><dd><a name="index-assembler-directive-_002erelax_002c-M68HC11-1170"></a><a name="index-M68HC11-assembler-directive-_002erelax-1171"></a>The relax directive is used by the <span class="samp">GNU Compiler</span> to emit a specific
relocation to mark a group of instructions for linker relaxation.
The sequence of instructions within the group must be known to the linker
so that relaxation can be performed.
<br><dt><code>.mode [mshort|mlong|mshort-double|mlong-double]</code><dd><a name="index-assembler-directive-_002emode_002c-M68HC11-1172"></a><a name="index-M68HC11-assembler-directive-_002emode-1173"></a>This directive specifies the ABI. It overrides the <span class="samp">-mshort</span>,
<span class="samp">-mlong</span>, <span class="samp">-mshort-double</span> and <span class="samp">-mlong-double</span> options.
<br><dt><code>.far </code><var>symbol</var><dd><a name="index-assembler-directive-_002efar_002c-M68HC11-1174"></a><a name="index-M68HC11-assembler-directive-_002efar-1175"></a>This directive marks the symbol as a <span class="samp">far</span> symbol meaning that it
uses a <span class="samp">call/rtc</span> calling convention as opposed to <span class="samp">jsr/rts</span>.
During a final link, the linker will identify references to the <span class="samp">far</span>
symbol and will verify the proper calling convention.
<br><dt><code>.interrupt </code><var>symbol</var><dd><a name="index-assembler-directive-_002einterrupt_002c-M68HC11-1176"></a><a name="index-M68HC11-assembler-directive-_002einterrupt-1177"></a>This directive marks the symbol as an interrupt entry point.
This information is then used by the debugger to correctly unwind the
frame across interrupts.
<br><dt><code>.xrefb </code><var>symbol</var><dd><a name="index-assembler-directive-_002exrefb_002c-M68HC11-1178"></a><a name="index-M68HC11-assembler-directive-_002exrefb-1179"></a>This directive is defined for compatibility with the
<span class="samp">Specification for Motorola 8 and 16-Bit Assembly Language Input
Standard</span> and is ignored.
</dl>
</body></html>