1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5    <meta http-equiv="Content-Style-Type" content="text/css" />
6    <link rel="stylesheet" href="../css/manpage.css" type="text/css" />
7    <link rel="stylesheet" href="../css/timetable.css" type="text/css" />
8    <title>mova - Move to address register</title>
9  </head>
10  <body>
11    <h1>mova - Move to address register</h1>
12
13    <h2>Calling Format</h2>
14    <div class="section">
15      <pre class="definition">
16mova    dest{ .x | .y | .xy }, src
17</pre>
18    </div>
19
20    <h2>Operands</h2>
21    <div class="section">
22      <table class="arguments">
23        <thead>
24          <tr>
25            <th>Name</th>
26            <td>Registers</td>
27          </tr>
28        </thead>
29        <tr>
30          <th>dest</th>
31          <td>
32            Address register.<BR>Must have one of the following masks: {.x|.y|.xy}<br>
33          </td>
34        </tr>
35        <tr>
36          <th>src</th>
37          <td>A temporary register, input register, or floating-point constant register.</td>
38        </tr>
39      </table>
40    </div>
41
42    <h2>Overview</h2>
43    <div class="section">
44      <p>
45        Copies the content of <SPAN class="argument">src</SPAN> into <SPAN class="argument">dest</SPAN>. The value of <SPAN class="argument">src</SPAN> is truncated after the decimal point.
46      </p>
47      <p class="warning">
48        Behavior is undefined if you assign a value outside the range of [-95, 95].<BR> This instruction generates an error if it is called two times in a row.<BR> A three clock-cycle stall occurs unconditionally when this instruction is executed.<BR>
49      </p>
50    </div>
51
52    <h2>Operation</h2>
53    <div class="section">
54<pre class="definition">
55dest = src
56</pre>
57    </div>
58
59    <h2>Code Example</h2>
60    <div class="section">
61<pre class="definition">
62mova    a0.x,   c1
63</pre>
64    </div>
65
66    <h2>Timetable</h2>
67    <div class="section">
68      <table class="timetable">
69        <tr>
70          <th></th>
71          <th>1</th><th>2</th><th>3</th><th>4</th>
72        </tr>
73        <tr>
74          <th>mova</th>
75          <td class="read">read</td>
76          <td class="MOVA">mova</td>
77          <td class="stall" colspan="2">STALL</td>
78          <td class="dummy"></td>
79        </tr>
80      </table>
81    </div>
82
83
84  <h2>Revision History</h2>
85  <div class="section">
86    <dl class="history">
87      <dt>2011/12/20</dt>
88      <dd>Initial version.<br />
89      </dd>
90    </dl>
91  </div>
92
93  <hr><p>CONFIDENTIAL</p></body>
94</html>