1<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4<meta http-equiv="Content-Style-Type" content="text/css" />
5<title>ctr_loadrun</title>
6<style type="text/css">
7<!--
8body {
9/*
10    font-size       : 10pt;
11*/
12    font-weight     : normal;
13    color           : #000000;
14    margin          : 8px;
15}
16
17div {
18    width           : 98%;
19    white-space     : nowrap;
20}
21
22div.title {
23    text-align      : left;
24    font-weight     : bold;
25/*
26    font-size       : 16pt;
27*/
28    font-size       : 150%;
29    color           : #202020;
30    border-style    : double;
31    border-width    : 8px;
32    /* タイトルを囲む枠線の色を指定 */
33    border-color    : #FF6600;
34
35    /* RVLプラットフォーム系列 */
36/*
37    border-color    : #34beed;
38*/
39
40    /* TWLプラットフォーム系列 */
41/*
42    border-color    : #ff458f;
43*/
44
45    margin          : 4px;
46    padding         : 4px;
47}
48H1 {
49  font-size		: 150%;
50  font-family		: Arial;
51  border-bottom-width	: 5px;
52  border-bottom-style	: solid;
53  border-bottom-color	: #FF6600;
54  padding-bottom		: 1px;
55  margin-bottom		: 20px;
56  letter-spacing		: normal;
57  font-weight		: bold;
58}
59
60h2 {
61    font-weight     : bold;
62/*
63    font-size       : 16pt;
64*/
65    font-size       : 150%;
66    border-style    : none none solid double;
67    border-width    : 0px 0px 2px 8px;
68    /* 見出しの線の色を指定 */
69    border-color    : #FF6600;
70
71    /* RVLプラットフォーム系列 */
72/*
73    border-color    : #34beed;
74*/
75
76    /* TWLプラットフォーム系列 */
77/*
78    border-color    : #ff458f;
79*/
80
81    margin-left     : 2px;
82    padding-left    : 4px;
83}
84CODE {
85  font-family		: "Courier New", monospace;
86  position		: normal;
87  left			: 12px;
88  font-size		: 10pt;
89}
90table {
91  margin-top        : 2pt;
92  margin-bottom     : 2pt;
93  margin-left       : 0pt;
94  margin-right      : 0pt;
95  padding-left      : 0pt;
96  padding-right     : 0pt;
97  position          : relative;
98  left              : 12px;
99  font-family       : Arial;
100  font-size         : 10pt;
101  border-style      : none none none none;
102}
103td,th {
104  padding           : 2pt;
105  border-width      : 2pt;
106  border-style      : none none none none;
107  font-style        : normal;
108  text-align        : left;
109}
110td {
111  background        : #e8f4f4;
112  font-weight       : normal;
113}
114th {
115  background        : #c0d8d8;
116  font-weight       : bold;
117}
118
119p {
120    margin-left     : 4px;
121}
122p.code {
123  font-family		: "Courier New", monospace;
124  position		: normal;
125  left			: 12px;
126  font-size		: 10pt;
127  background            : #e8f4f4;
128}
129
130-->
131</style>
132</head>
133  <body>
134    <h1>ctr_loadrun</h1>
135    <h2>Description</h2>
136      <p>
137        The <CODE>ctr_loadrun</CODE> tool is used to run specified programs in a debugger (such as PARTNER-CTR). It can be used to run programs from the command line without requiring any debugger operations.
138      </p>
139    <h2>How to Use</h2>
140    <h3>Format</h3>
141    <pre> $ ctr_loadrun32.exe [CciFile] [options...] </pre>
142    <h3>Options</h3>
143    <div class="section">
144      <p>
145        <table class="table"><tbody>
146          <tr><th>Options</th> <th>Arguments</th><th>Description</th></tr>
147          <tr>
148             <td><CODE>-h (--help)</CODE></td>
149             <td></td>
150             <td>Displays help.</td>
151          </tr>
152          <tr>
153            <td><CODE>-l (--devicelist)</CODE></td>
154            <td></td>
155            <td>Displays the connected devices.</td>
156          </tr>
157          <tr>
158            <td><CODE>-t (--timeout)</CODE></td>
159            <td><CODE>TIMEOUT-SECONDS</CODE></td>
160            <td>Sets the timeout from startup to exit.</td>
161          </tr>
162          <tr>
163            <td><CODE>-e (--exit-pattern)</CODE></td>
164            <td><CODE>EXIT-PATTERN</CODE></td>
165            <td>Exits upon output of a string that matches the regular expression specified by <CODE>EXIT-PATTERN</CODE>.<br /> The regular expression syntax conforms with the .NET Framework's <CODE>System.Text.RegularExpressions</CODE> namespace.
166            </td>
167          </tr>
168          <tr>
169            <td><CODE>-c (--command)</CODE></td>
170            <td><CODE>COMMAND</CODE></td>
171            <td>Specifies the command to run before loading the image file.</td>
172          </tr>
173          <tr>
174             <td><CODE>-m (--macro)</CODE></td>
175             <td><CODE>MACROFILE</CODE></td>
176             <td>Specifies the macro file to run before loading the image file.</td>
177          </tr>
178          <tr>
179            <td><CODE>-d (--device)</CODE></td>
180            <td><CODE>SERIALNUMBER</CODE></td>
181            <td>Specifies which device to use by its serial number.</td>
182          </tr>
183          <tr>
184            <td><CODE>-nw (--no-wait)</CODE></td>
185            <td></td>
186            <td>Exits <CODE>loadrun</CODE> when it is confirmed that all commands have been sent.</td>
187          </tr>
188          <tr>
189            <td><CODE>-ns (--no-start)</CODE></td>
190            <td></td>
191            <td>Normally the <CODE>G</CODE> command, which runs the program, is sent after the program has been loaded.<br /> With this option, the <CODE>G</CODE> command is not sent.</td>
192          </tr>
193        </tbody></table>
194      </p>
195    </div>
196    <h2>Location</h2>
197    <pre> $CTRSDK_ROOT/tools/ComandlineTools/ctr_loadrun32.exe </pre>
198    <h2>Revision History</h2>
199    <div class="section">
200      <dl class="history">
201        <dt>2010/11/23</dt>
202        <dd>Changed the location of the document.<br />
203        </dd>
204        <dt>2010/10/25</dt>
205        <dd>Initial version.<br />
206        </dd>
207      </dl>
208    </div>
209  <hr><p>CONFIDENTIAL</p></body>
210</html>
211