1<html> 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>Development Menu</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} 84 85table { 86 margin-top : 2pt; 87 margin-bottom : 2pt; 88 margin-left : 0pt; 89 margin-right : 0pt; 90 padding-left : 0pt; 91 padding-right : 0pt; 92 position : relative; 93 left : 12px; 94 font-family : Arial; 95 font-size : 10pt; 96 border-style : none none none none; 97} 98td,th { 99 padding : 2pt; 100 border-width : 2pt; 101 border-style : none none none none; 102 font-style : normal; 103 text-align : left; 104} 105td { 106 background : #e8f4f4; 107 font-weight : normal; 108} 109th { 110 background : #c0d8d8; 111 font-weight : bold; 112} 113 114p { 115 margin-left : 4px; 116} 117p.code { 118 font-family : "Courier New", monospace; 119 position : normal; 120 left : 12px; 121 font-size : 10pt; 122 background : #e8f4f4; 123} 124 125--> 126</style> 127 128</head> 129<body> 130<a name="top"></a> <!-- ※注意事項 --> <!-- ・(任意)となっているものは、記載が無くても問題ありません。 --> <!-- ・各項目についてる(必須)や(任意)は、作成後に削除してください。 --> <!-- ・各項目内の書き方は、パッケージごとに自由で問題ありませんが、同じパッケージ内で違いがでないようにしてください。 --> <!-- ・タグはすべて小文字、終了タグを持たないものは「/>」で閉じてください。--> <!-- ・HTMLコードのインデントは、各種社内コード規約と同様にスペース4文字か4文字幅のタブになるようにしてください--> 131 132 133<h1>Development Menu 134</h1> 135 136<h2>Table of Contents</h2> 137 <ol> 138<li><a href="#ss01">Overview</a></li> 139<li><a href="#ss02">How to Use</a></li> 140<li><a href="#ss10">Note</a></li> 141<li><a href="#ss10">Revision History</a></li> 142 </ol> 143 144<h2>1. <a name="ss01">Overview</a></h2> 145<p>The Development Menu is the screen that is first displayed when the PARTNER-CTR Debugger or CTR test unit is turned on.<br /><br /> It is a substitute for the HOME Menu for CTR devices and has minimal functionality.<br /> When the HOME Button is pressed while an application is running, that application is interrupted and this menu is displayed.<br /> <br /> However, to return to the Development Menu, the application must handle a press of the HOME Button.<br /> 146 </p> 147 148<div align="right"><a href="#top">Back to top</a></div> 149 150 151<h2>2. <a name="ss02">How to Use</a></h2> 152<p>The following operations are possible on the Development Menu.</p> 153 <div class="table"> 154 <table border="1"> 155 <thead> 156 <tr> 157<th align="center">Input</th> 158<th align="center">Feature</th> 159 </tr> 160 </thead> 161 <tbody> 162 <tr> 163<td align="center">START</td> 164<td align="left">Start <CODE>DevMenu</CODE>. When there is an interrupted application, terminate that <br />application then start <CODE>DevMenu</CODE>.</td> 165 </tr> 166 <tr> 167<td align="center">A</td> 168<td align="left">Launches an application from a CTR Card. With the PARTNER-CTR Debugger, the application<br /> loaded in the emulation memory is started.</td> 169 </tr> 170 <tr> 171<td align="center">B</td> 172<td align="left">Terminates an interrupted application, if there is one.</td> 173 </tr> 174 <tr> 175<td align="center">HOME</td> 176<td align="left">Returns to an interrupted application, if there is one.</td> 177 </tr> 178 </tbody> 179 </table> 180 </div> 181</p> 182 183<div align="right"><a href="#top">Back to top</a></div> 184 185<h2>3. <a name="ss01">Note</a></h2> 186<p>The Development Menu is a minimal implementation. Apart from its appearance, it has a number of restrictions that do not apply to the actual HOME Menu.<br /><br /> The sleep-related implementation differs from the HOME Menu and in some places does not account for critical timing. As a result, if the system enters Sleep Mode during an application transition (this includes closing the application and returning), it may not recover. 187 </p> 188 189<div align="right"><a href="#top">Back to top</a></div> 190 191 192<h2>4. <a name="ss10">Revision History</a></h2> 193 <dl> 194 <dt>2010/12/13</dt> 195<dd>Added a note. 196 </dd> 197 </dl> 198 <dl> 199 <dt>2010/10/26</dt> 200<dd>Initial version. 201 </dd> 202 </dl> 203 <p> 204 <br /> 205 </p> 206 207<div align="right"><a href="#top">Back to top</a></div> 208 209 210<hr><p>CONFIDENTIAL</p></body> 211</html> 212