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>else - Start else block</title>
9  </head>
10  <body>
11    <h1>else - Start else block</h1>
12
13    <h2>Calling Format</h2>
14    <div class="section">
15      <pre class="definition">
16else
17</pre>
18    </div>
19
20    <h2>Operands</h2>
21    <div class="section">
22      <p>
23        None.<br>
24      </p>
25    </div>
26
27    <h2>Overview</h2>
28    <div class="section">
29      <p>
30        This is used in combination with <CODE>ifc</CODE> or <CODE>ifb</CODE>. When  <CODE>if</CODE> is true, processing runs until this instruction and then skips all instructions until the next <CODE>endif</CODE>. When <CODE>if</CODE> is false, processing skips from the <CODE>if</CODE> instruction to this one and then runs all instructions between this and <CODE>endif</CODE>.<br>
31      </p>
32      <p class="warning">
33        You must include at least one instruction between <CODE>ifb</CODE> and <CODE>else</CODE>, between <CODE>ifc</CODE> and <CODE>else</CODE>, and between <CODE>else</CODE> and <CODE>endif</CODE>.<br>
34      </p>
35    </div>
36
37    <h2>Operation</h2>
38    <div class="section">
39<pre class="definition">
40if ( src == true )
41{
42    ...
43}
44else
45{
46    ...
47}
48endif
49</pre>
50    </div>
51
52    <h2>Code Example</h2>
53    <div class="section">
54<pre class="definition">
55ifb     b0
56    ...
57else
58    ...
59endif
60</pre>
61    </div>
62
63
64  <h2>Revision History</h2>
65  <div class="section">
66    <dl class="history">
67      <dt>2011/12/20</dt>
68      <dd>Initial version.<br />
69      </dd>
70    </dl>
71  </div>
72
73  <hr><p>CONFIDENTIAL</p></body>
74</html>