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>defb - Define boolean constants</title>
9  </head>
10  <body>
11    <h1>defb - Define boolean constants</h1>
12
13    <h2>Calling Format</h2>
14    <div class="section">
15      <pre class="definition">
16defb    dest, value
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>Register</td>
27          </tr>
28        </thead>
29        <tr>
30          <th>dest</th>
31          <td>Boolean register</td>
32        </tr>
33        <tr>
34          <th>value</th>
35          <td><CODE>true</CODE> or <CODE>false</CODE>.</td>
36        </tr>
37      </table>
38    </div>
39
40    <h2>Overview</h2>
41    <div class="section">
42      <p>Sets the value of a Boolean register.</p>
43    </div>
44
45    <h2>Code Example</h2>
46    <div class="section">
47<pre class="definition">
48defb    b0, true
49defb    b1, false
50</pre>
51    </div>
52
53
54  <h2>Revision History</h2>
55  <div class="section">
56    <dl class="history">
57      <dt>2011/12/20</dt>
58      <dd>Initial version.<br />
59      </dd>
60    </dl>
61  </div>
62
63  <hr><p>CONFIDENTIAL</p></body>
64</html>