<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'> <html xmlns='http://www.w3.org/1999/xhtml'> <head> <title>src/assemble.c</title> <meta name='robots' content='noindex,nofollow' /> <meta name='generator' content='GLOBAL-6.6.5' /> <meta http-equiv='Content-Style-Type' content='text/css' /> <link rel='stylesheet' type='text/css' href='../style.css' /> </head> <body> <a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/2932.html'>src</a>/assemble.c</h2> <em class='comment'>/* [<][>]<a href='#L314'>[^]</a><a href='#L805'>[v]</a>[top]<a href='#BOTTOM'>[bottom]</a><a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em> <hr /> <h2 class='header'>DEFINITIONS</h2> This source file includes following definitions. <ol> <li><a href='#L314' title='Defined at 314.'>printline</a></li> <li><a href='#L319' title='Defined at 319.'>getadr</a></li> <li><a href='#L337' title='Defined at 337.'>grword</a></li> <li><a href='#L357' title='Defined at 357.'>getliteral</a></li> <li><a href='#L371' title='Defined at 371.'>writememory</a></li> <li><a href='#L387' title='Defined at 387.'>writestr</a></li> <li><a href='#L413' title='Defined at 413.'>writedc</a></li> <li><a href='#L431' title='Defined at 431.'>assemble_start</a></li> <li><a href='#L449' title='Defined at 449.'>assemble_end</a></li> <li><a href='#L466' title='Defined at 466.'>assemble_ds</a></li> <li><a href='#L480' title='Defined at 480.'>assemble_dc</a></li> <li><a href='#L494' title='Defined at 494.'>assemble_in</a></li> <li><a href='#L514' title='Defined at 514.'>assemble_out</a></li> <li><a href='#L537' title='Defined at 537.'>assemble_rpush</a></li> <li><a href='#L552' title='Defined at 552.'>assemble_rpop</a></li> <li><a href='#L567' title='Defined at 567.'>casl2cmd</a></li> <li><a href='#L581' title='Defined at 581.'>assemble_comet2cmd</a></li> <li><a href='#L671' title='Defined at 671.'>assembletok</a></li> <li><a href='#L689' title='Defined at 689.'>assembleline</a></li> <li><a href='#L723' title='Defined at 723.'>assemblefile</a></li> <li><a href='#L751' title='Defined at 751.'>assemble</a></li> <li><a href='#L797' title='Defined at 797.'>addcerrlist_assemble</a></li> <li><a href='#L805' title='Defined at 805.'>outassemble</a></li> </ol> <hr /> <pre> <a id='L1' name='L1'></a> 1 <em class='sharp'>#include</em> "<a href='2413.html'>assemble.h</a>" <a id='L2' name='L2'></a> 2 <a id='L3' name='L3'></a> 3 <em class='comment'>/**</em> <a id='L4' name='L4'></a> 4 <em class='comment'> * @brief ファイルストリームの現在行を番号付きで表示する</em> <a id='L5' name='L5'></a> 5 <em class='comment'> *</em> <a id='L6' name='L6'></a> 6 <em class='comment'> * @return なし</em> <a id='L7' name='L7'></a> 7 <em class='comment'> *</em> <a id='L8' name='L8'></a> 8 <em class='comment'> * @param *stream ファイルストリーム</em> <a id='L9' name='L9'></a> 9 <em class='comment'> * @param *filename ファイル名</em> <a id='L10' name='L10'></a> 10 <em class='comment'> * @param lineno 行番号</em> <a id='L11' name='L11'></a> 11 <em class='comment'> * @param line 行の文字列</em> <a id='L12' name='L12'></a> 12 <em class='comment'> */</em> <a id='L13' name='L13'></a> 13 <strong class='reserved'>void</strong> <a href='../S/2837.html#L314' title='Defined at 314 in src/assemble.c.'>printline</a>(<a href='../Y/2.html' title='Multiple used in 16 places.'>FILE</a> *<a href='../Y/211.html' title='Multiple used in 15 places.'>stream</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/98.html' title='Multiple used in 3 places.'>filename</a>, <strong class='reserved'>int</strong> <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>, <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L14' name='L14'></a> 14 <a id='L15' name='L15'></a> 15 <em class='comment'>/**</em> <a id='L16' name='L16'></a> 16 <em class='comment'> * @brief アドレスを返す</em> <a id='L17' name='L17'></a> 17 <em class='comment'> *</em> <a id='L18' name='L18'></a> 18 <em class='comment'> * アドレスには、リテラル/10進定数/16進定数/アドレス定数が含まれる</em> <a id='L19' name='L19'></a> 19 <em class='comment'> *</em> <a id='L20' name='L20'></a> 20 <em class='comment'> * @return アドレス</em> <a id='L21' name='L21'></a> 21 <em class='comment'> *</em> <a id='L22' name='L22'></a> 22 <em class='comment'> * @param *prog プログラム名</em> <a id='L23' name='L23'></a> 23 <em class='comment'> * @param *str アドレスを表す文字列</em> <a id='L24' name='L24'></a> 24 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L25' name='L25'></a> 25 <em class='comment'> */</em> <a id='L26' name='L26'></a> 26 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../S/2837.html#L319' title='Defined at 319 in src/assemble.c.'>getadr</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L27' name='L27'></a> 27 <a id='L28' name='L28'></a> 28 <em class='comment'>/**</em> <a id='L29' name='L29'></a> 29 <em class='comment'> * @brief 汎用レジスタを表す文字列からレジスタ番号を返す</em> <a id='L30' name='L30'></a> 30 <em class='comment'> *</em> <a id='L31' name='L31'></a> 31 <em class='comment'> * @brief 文字列が汎用レジスタを表さない場合は、0xFFFFを返す</em> <a id='L32' name='L32'></a> 32 <em class='comment'> *</em> <a id='L33' name='L33'></a> 33 <em class='comment'> * is_xがtrueの場合は指標レジスタとなり、GR0が指定された場合はCOMET IIの仕様によりエラー発生</em> <a id='L34' name='L34'></a> 34 <em class='comment'> *</em> <a id='L35' name='L35'></a> 35 <em class='comment'> * @return レジスタ番号[0-7]を表すWORD値</em> <a id='L36' name='L36'></a> 36 <em class='comment'> *</em> <a id='L37' name='L37'></a> 37 <em class='comment'> * @param *str 汎用レジスタを表す文字列。「GR0」「GR1」・・・「GR7」のいずれか</em> <a id='L38' name='L38'></a> 38 <em class='comment'> * @param is_x trueの場合は指標レジスタ</em> <a id='L39' name='L39'></a> 39 <em class='comment'> */</em> <a id='L40' name='L40'></a> 40 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../S/2837.html#L337' title='Defined at 337 in src/assemble.c.'>grword</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/119.html' title='Multiple used in 7 places.'>is_x</a>); <a id='L41' name='L41'></a> 41 <a id='L42' name='L42'></a> 42 <em class='comment'>/**</em> <a id='L43' name='L43'></a> 43 <em class='comment'> * @brief リテラルを返す</em> <a id='L44' name='L44'></a> 44 <em class='comment'> *</em> <a id='L45' name='L45'></a> 45 <em class='comment'> * リテラルには、10進定数/16進定数/文字定数が含まれる</em> <a id='L46' name='L46'></a> 46 <em class='comment'> *</em> <a id='L47' name='L47'></a> 47 <em class='comment'> * @param *str リテラル。定数の前に等号(=)をつけて記述される</em> <a id='L48' name='L48'></a> 48 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L49' name='L49'></a> 49 <em class='comment'> */</em> <a id='L50' name='L50'></a> 50 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../S/2837.html#L357' title='Defined at 357 in src/assemble.c.'>getliteral</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L51' name='L51'></a> 51 <a id='L52' name='L52'></a> 52 <em class='comment'>/**</em> <a id='L53' name='L53'></a> 53 <em class='comment'> * @brief アドレス値をメモリに書き込む</em> <a id='L54' name='L54'></a> 54 <em class='comment'> *</em> <a id='L55' name='L55'></a> 55 <em class='comment'> * @return なし</em> <a id='L56' name='L56'></a> 56 <em class='comment'> *</em> <a id='L57' name='L57'></a> 57 <em class='comment'> * @param word アドレス値</em> <a id='L58' name='L58'></a> 58 <em class='comment'> * @param adr アドレス</em> <a id='L59' name='L59'></a> 59 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L60' name='L60'></a> 60 <em class='comment'> */</em> <a id='L61' name='L61'></a> 61 <strong class='reserved'>void</strong> <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>, <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L62' name='L62'></a> 62 <a id='L63' name='L63'></a> 63 <em class='comment'>/**</em> <a id='L64' name='L64'></a> 64 <em class='comment'> * @brief 文字をメモリに書き込む</em> <a id='L65' name='L65'></a> 65 <em class='comment'> *</em> <a id='L66' name='L66'></a> 66 <em class='comment'> * @return なし</em> <a id='L67' name='L67'></a> 67 <em class='comment'> *</em> <a id='L68' name='L68'></a> 68 <em class='comment'> * @param *str アドレスを表す文字列。リテラル/10進定数/16進定数/アドレス定数が含まれる</em> <a id='L69' name='L69'></a> 69 <em class='comment'> * @param literal リテラルの場合はtrue</em> <a id='L70' name='L70'></a> 70 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L71' name='L71'></a> 71 <em class='comment'> */</em> <a id='L72' name='L72'></a> 72 <strong class='reserved'>void</strong> <a href='../S/2837.html#L387' title='Defined at 387 in src/assemble.c.'>writestr</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/135.html' title='Multiple used in 4 places.'>literal</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L73' name='L73'></a> 73 <a id='L74' name='L74'></a> 74 <em class='comment'>/**</em> <a id='L75' name='L75'></a> 75 <em class='comment'> * @brief DC命令を書込</em> <a id='L76' name='L76'></a> 76 <em class='comment'> *</em> <a id='L77' name='L77'></a> 77 <em class='comment'> * @return なし</em> <a id='L78' name='L78'></a> 78 <em class='comment'> *</em> <a id='L79' name='L79'></a> 79 <em class='comment'> * @param str アドレスを表す文字列。10進定数/16進定数/アドレス定数が含まれる</em> <a id='L80' name='L80'></a> 80 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L81' name='L81'></a> 81 <em class='comment'> */</em> <a id='L82' name='L82'></a> 82 <strong class='reserved'>void</strong> <a href='../S/2837.html#L413' title='Defined at 413 in src/assemble.c.'>writedc</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L83' name='L83'></a> 83 <a id='L84' name='L84'></a> 84 <em class='comment'>/**</em> <a id='L85' name='L85'></a> 85 <em class='comment'> * @brief アセンブラ命令STARTの処理</em> <a id='L86' name='L86'></a> 86 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L87' name='L87'></a> 87 <em class='comment'> *</em> <a id='L88' name='L88'></a> 88 <em class='comment'> * @return なし</em> <a id='L89' name='L89'></a> 89 <em class='comment'> *</em> <a id='L90' name='L90'></a> 90 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L91' name='L91'></a> 91 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L92' name='L92'></a> 92 <em class='comment'> */</em> <a id='L93' name='L93'></a> 93 <strong class='reserved'>void</strong> <a href='../S/2837.html#L431' title='Defined at 431 in src/assemble.c.'>assemble_start</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L94' name='L94'></a> 94 <a id='L95' name='L95'></a> 95 <em class='comment'>/**</em> <a id='L96' name='L96'></a> 96 <em class='comment'> * @brief アセンブラ命令DSの処理</em> <a id='L97' name='L97'></a> 97 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L98' name='L98'></a> 98 <em class='comment'> *</em> <a id='L99' name='L99'></a> 99 <em class='comment'> * @return なし</em> <a id='L100' name='L100'></a> 100 <em class='comment'> *</em> <a id='L101' name='L101'></a> 101 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L102' name='L102'></a> 102 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L103' name='L103'></a> 103 <em class='comment'> */</em> <a id='L104' name='L104'></a> 104 <strong class='reserved'>void</strong> <a href='../S/2837.html#L466' title='Defined at 466 in src/assemble.c.'>assemble_ds</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L105' name='L105'></a> 105 <a id='L106' name='L106'></a> 106 <em class='comment'>/**</em> <a id='L107' name='L107'></a> 107 <em class='comment'> * @brief アセンブラ命令ENDの処理</em> <a id='L108' name='L108'></a> 108 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L109' name='L109'></a> 109 <em class='comment'> *</em> <a id='L110' name='L110'></a> 110 <em class='comment'> * @return なし</em> <a id='L111' name='L111'></a> 111 <em class='comment'> *</em> <a id='L112' name='L112'></a> 112 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L113' name='L113'></a> 113 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L114' name='L114'></a> 114 <em class='comment'> */</em> <a id='L115' name='L115'></a> 115 <strong class='reserved'>void</strong> <a href='../S/2837.html#L449' title='Defined at 449 in src/assemble.c.'>assemble_end</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L116' name='L116'></a> 116 <a id='L117' name='L117'></a> 117 <em class='comment'>/**</em> <a id='L118' name='L118'></a> 118 <em class='comment'> * @brief アセンブラ命令DCの処理</em> <a id='L119' name='L119'></a> 119 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L120' name='L120'></a> 120 <em class='comment'> *</em> <a id='L121' name='L121'></a> 121 <em class='comment'> * @return なし</em> <a id='L122' name='L122'></a> 122 <em class='comment'> *</em> <a id='L123' name='L123'></a> 123 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L124' name='L124'></a> 124 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L125' name='L125'></a> 125 <em class='comment'> */</em> <a id='L126' name='L126'></a> 126 <strong class='reserved'>void</strong> <a href='../S/2837.html#L480' title='Defined at 480 in src/assemble.c.'>assemble_dc</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L127' name='L127'></a> 127 <a id='L128' name='L128'></a> 128 <em class='comment'>/**</em> <a id='L129' name='L129'></a> 129 <em class='comment'> * @brief マクロ命令 "IN IBUF,LEN" をアセンブル</em> <a id='L130' name='L130'></a> 130 <em class='comment'> *</em> <a id='L131' name='L131'></a> 131 <em class='comment'> * @code</em> <a id='L132' name='L132'></a> 132 <em class='comment'> * PUSH 0,GR1</em> <a id='L133' name='L133'></a> 133 <em class='comment'> * PUSH 0,GR2</em> <a id='L134' name='L134'></a> 134 <em class='comment'> * LAD GR1,IBUF</em> <a id='L135' name='L135'></a> 135 <em class='comment'> * LAD GR2,LEN</em> <a id='L136' name='L136'></a> 136 <em class='comment'> * SVC 1</em> <a id='L137' name='L137'></a> 137 <em class='comment'> * POP GR2</em> <a id='L138' name='L138'></a> 138 <em class='comment'> * POP GR1</em> <a id='L139' name='L139'></a> 139 <em class='comment'> * @endcode</em> <a id='L140' name='L140'></a> 140 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L141' name='L141'></a> 141 <em class='comment'> *</em> <a id='L142' name='L142'></a> 142 <em class='comment'> *</em> <a id='L143' name='L143'></a> 143 <em class='comment'> * @return なし</em> <a id='L144' name='L144'></a> 144 <em class='comment'> *</em> <a id='L145' name='L145'></a> 145 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L146' name='L146'></a> 146 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L147' name='L147'></a> 147 <em class='comment'> */</em> <a id='L148' name='L148'></a> 148 <strong class='reserved'>void</strong> <a href='../S/2837.html#L494' title='Defined at 494 in src/assemble.c.'>assemble_in</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L149' name='L149'></a> 149 <a id='L150' name='L150'></a> 150 <em class='comment'>/**</em> <a id='L151' name='L151'></a> 151 <em class='comment'> * @brief マクロ命令 "OUT OBUF,LEN" をアセンブル</em> <a id='L152' name='L152'></a> 152 <em class='comment'> *</em> <a id='L153' name='L153'></a> 153 <em class='comment'> * @code</em> <a id='L154' name='L154'></a> 154 <em class='comment'> * PUSH 0,GR1</em> <a id='L155' name='L155'></a> 155 <em class='comment'> * PUSH 0,GR2</em> <a id='L156' name='L156'></a> 156 <em class='comment'> * LAD GR1,OBUF</em> <a id='L157' name='L157'></a> 157 <em class='comment'> * LAD GR2,LEN</em> <a id='L158' name='L158'></a> 158 <em class='comment'> * SVC 2</em> <a id='L159' name='L159'></a> 159 <em class='comment'> * LAD GR1,=#A</em> <a id='L160' name='L160'></a> 160 <em class='comment'> * LAD GR2,=1</em> <a id='L161' name='L161'></a> 161 <em class='comment'> * SVC 2</em> <a id='L162' name='L162'></a> 162 <em class='comment'> * POP GR2</em> <a id='L163' name='L163'></a> 163 <em class='comment'> * POP GR1</em> <a id='L164' name='L164'></a> 164 <em class='comment'> * @endcode</em> <a id='L165' name='L165'></a> 165 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L166' name='L166'></a> 166 <em class='comment'> *</em> <a id='L167' name='L167'></a> 167 <em class='comment'> * @return なし</em> <a id='L168' name='L168'></a> 168 <em class='comment'> *</em> <a id='L169' name='L169'></a> 169 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L170' name='L170'></a> 170 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L171' name='L171'></a> 171 <em class='comment'> */</em> <a id='L172' name='L172'></a> 172 <strong class='reserved'>void</strong> <a href='../S/2837.html#L514' title='Defined at 514 in src/assemble.c.'>assemble_out</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L173' name='L173'></a> 173 <a id='L174' name='L174'></a> 174 <em class='comment'>/**</em> <a id='L175' name='L175'></a> 175 <em class='comment'> * @brief マクロ命令 "RPUSH" をメモリに書き込む</em> <a id='L176' name='L176'></a> 176 <em class='comment'> *</em> <a id='L177' name='L177'></a> 177 <em class='comment'> * @code</em> <a id='L178' name='L178'></a> 178 <em class='comment'> * PUSH 0,GR1</em> <a id='L179' name='L179'></a> 179 <em class='comment'> * PUSH 0,GR2</em> <a id='L180' name='L180'></a> 180 <em class='comment'> * PUSH 0,GR3</em> <a id='L181' name='L181'></a> 181 <em class='comment'> * PUSH 0,GR4</em> <a id='L182' name='L182'></a> 182 <em class='comment'> * PUSH 0,GR5</em> <a id='L183' name='L183'></a> 183 <em class='comment'> * PUSH 0,GR6</em> <a id='L184' name='L184'></a> 184 <em class='comment'> * PUSH 0,GR7</em> <a id='L185' name='L185'></a> 185 <em class='comment'> * @endcode</em> <a id='L186' name='L186'></a> 186 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L187' name='L187'></a> 187 <em class='comment'> *</em> <a id='L188' name='L188'></a> 188 <em class='comment'> * @return なし</em> <a id='L189' name='L189'></a> 189 <em class='comment'> *</em> <a id='L190' name='L190'></a> 190 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L191' name='L191'></a> 191 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L192' name='L192'></a> 192 <em class='comment'> */</em> <a id='L193' name='L193'></a> 193 <strong class='reserved'>void</strong> <a href='../S/2837.html#L537' title='Defined at 537 in src/assemble.c.'>assemble_rpush</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L194' name='L194'></a> 194 <a id='L195' name='L195'></a> 195 <em class='comment'>/**</em> <a id='L196' name='L196'></a> 196 <em class='comment'> * @brief マクロ命令 "RPOP" をメモリに書き込む</em> <a id='L197' name='L197'></a> 197 <em class='comment'> *</em> <a id='L198' name='L198'></a> 198 <em class='comment'> * @code</em> <a id='L199' name='L199'></a> 199 <em class='comment'> * POP GR7</em> <a id='L200' name='L200'></a> 200 <em class='comment'> * POP GR6</em> <a id='L201' name='L201'></a> 201 <em class='comment'> * POP GR5</em> <a id='L202' name='L202'></a> 202 <em class='comment'> * POP GR4</em> <a id='L203' name='L203'></a> 203 <em class='comment'> * POP GR3</em> <a id='L204' name='L204'></a> 204 <em class='comment'> * POP GR3</em> <a id='L205' name='L205'></a> 205 <em class='comment'> * POP GR2</em> <a id='L206' name='L206'></a> 206 <em class='comment'> * POP GR1</em> <a id='L207' name='L207'></a> 207 <em class='comment'> * @endcode</em> <a id='L208' name='L208'></a> 208 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L209' name='L209'></a> 209 <em class='comment'> *</em> <a id='L210' name='L210'></a> 210 <em class='comment'> * @return なし</em> <a id='L211' name='L211'></a> 211 <em class='comment'> *</em> <a id='L212' name='L212'></a> 212 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L213' name='L213'></a> 213 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L214' name='L214'></a> 214 <em class='comment'> */</em> <a id='L215' name='L215'></a> 215 <strong class='reserved'>void</strong> <a href='../S/2837.html#L552' title='Defined at 552 in src/assemble.c.'>assemble_rpop</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L216' name='L216'></a> 216 <a id='L217' name='L217'></a> 217 <em class='comment'>/**</em> <a id='L218' name='L218'></a> 218 <em class='comment'> * @class Casl2cmd</em> <a id='L219' name='L219'></a> 219 <em class='comment'> * @brief casl2cmdから関数ポインタで呼び出される関数</em> <a id='L220' name='L220'></a> 220 <em class='comment'> */</em> <a id='L221' name='L221'></a> 221 <a id='L222' name='L222'></a> 222 <em class='comment'>/**</em> <a id='L223' name='L223'></a> 223 <em class='comment'> * @brief アセンブラ言語CASL IIの命令を処理する。</em> <a id='L224' name='L224'></a> 224 <em class='comment'> *</em> <a id='L225' name='L225'></a> 225 <em class='comment'> * エラー発生時は、cerrを設定</em> <a id='L226' name='L226'></a> 226 <em class='comment'> *</em> <a id='L227' name='L227'></a> 227 <em class='comment'> * @relatesalso Casl2cmd</em> <a id='L228' name='L228'></a> 228 <em class='comment'> *</em> <a id='L229' name='L229'></a> 229 <em class='comment'> * @return 命令が表で定義されている場合はtrue、それ以外の場合はfalseを返す</em> <a id='L230' name='L230'></a> 230 <em class='comment'> *</em> <a id='L231' name='L231'></a> 231 <em class='comment'> * @param *cmdtbl アセンブラ言語CASL IIの命令表</em> <a id='L232' name='L232'></a> 232 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L233' name='L233'></a> 233 <em class='comment'> * @param pass アセンブルが何回目か</em> <a id='L234' name='L234'></a> 234 <em class='comment'> */</em> <a id='L235' name='L235'></a> 235 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../S/2837.html#L567' title='Defined at 567 in src/assemble.c.'>casl2cmd</a>(<a href='../S/2417.html#L107' title='Defined at 107 in include/struct.h.'>CMD</a> *<a href='../Y/65.html' title='Multiple used in 5 places.'>cmdtbl</a>, <strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L236' name='L236'></a> 236 <a id='L237' name='L237'></a> 237 <em class='comment'>/**</em> <a id='L238' name='L238'></a> 238 <em class='comment'> * @brief システムCOMET IIの命令をアセンブルする</em> <a id='L239' name='L239'></a> 239 <em class='comment'> *</em> <a id='L240' name='L240'></a> 240 <em class='comment'> * @return アセンブル成功時はtrue、失敗時はfalseを返す</em> <a id='L241' name='L241'></a> 241 <em class='comment'> *</em> <a id='L242' name='L242'></a> 242 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L243' name='L243'></a> 243 <em class='comment'> * @param pass アセンブルが何回目か</em> <a id='L244' name='L244'></a> 244 <em class='comment'> */</em> <a id='L245' name='L245'></a> 245 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../S/2837.html#L581' title='Defined at 581 in src/assemble.c.'>assemble_comet2cmd</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L246' name='L246'></a> 246 <a id='L247' name='L247'></a> 247 <em class='comment'>/**</em> <a id='L248' name='L248'></a> 248 <em class='comment'> * @brief トークンをアセンブルする</em> <a id='L249' name='L249'></a> 249 <em class='comment'> *</em> <a id='L250' name='L250'></a> 250 <em class='comment'> * @return アセンブル成功時はtrue、失敗時はfalseを返す</em> <a id='L251' name='L251'></a> 251 <em class='comment'> *</em> <a id='L252' name='L252'></a> 252 <em class='comment'> * @param *cmdl 1行分のラベル・コマンド・オペランド</em> <a id='L253' name='L253'></a> 253 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L254' name='L254'></a> 254 <em class='comment'> */</em> <a id='L255' name='L255'></a> 255 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../S/2837.html#L671' title='Defined at 671 in src/assemble.c.'>assembletok</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L256' name='L256'></a> 256 <a id='L257' name='L257'></a> 257 <em class='comment'>/**</em> <a id='L258' name='L258'></a> 258 <em class='comment'> * @brief 1行をアセンブルする</em> <a id='L259' name='L259'></a> 259 <em class='comment'> *</em> <a id='L260' name='L260'></a> 260 <em class='comment'> * passが1の場合はラベルを登録し、2の場合はラベルからアドレスを読み込む</em> <a id='L261' name='L261'></a> 261 <em class='comment'> *</em> <a id='L262' name='L262'></a> 262 <em class='comment'> * @return アセンブル成功時はtrue、失敗時はfalseを返す</em> <a id='L263' name='L263'></a> 263 <em class='comment'> *</em> <a id='L264' name='L264'></a> 264 <em class='comment'> * @param *line 1行分の文字列</em> <a id='L265' name='L265'></a> 265 <em class='comment'> * @param pass アセンブラが何回目かを表す数</em> <a id='L266' name='L266'></a> 266 <em class='comment'> */</em> <a id='L267' name='L267'></a> 267 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L268' name='L268'></a> 268 <a id='L269' name='L269'></a> 269 <em class='comment'>/**</em> <a id='L270' name='L270'></a> 270 <em class='comment'> * @brief アセンブルのエラー</em> <a id='L271' name='L271'></a> 271 <em class='comment'> */</em> <a id='L272' name='L272'></a> 272 <strong class='reserved'>static</strong> <a href='../S/2415.html#L18' title='Defined at 18 in include/cerr.h.'>CERR</a> <a href='../Y/39.html' title='Multiple used in 2 places.'>cerr_assemble</a>[] = <em class='brace'>{</em> <a id='L273' name='L273'></a> 273 <em class='brace'>{</em> 106, "operand mismatch in CASL II command" <em class='brace'>}</em>, <a id='L274' name='L274'></a> 274 <em class='brace'>{</em> 107, "no label in START" <em class='brace'>}</em>, <a id='L275' name='L275'></a> 275 <em class='brace'>{</em> 108, "not command of operand \"r\"" <em class='brace'>}</em>, <a id='L276' name='L276'></a> 276 <em class='brace'>{</em> 109, "not command of operand \"r1,r2\"" <em class='brace'>}</em>, <a id='L277' name='L277'></a> 277 <em class='brace'>{</em> 110, "not command of operand \"r,adr[,x]\"" <em class='brace'>}</em>, <a id='L278' name='L278'></a> 278 <em class='brace'>{</em> 111, "not command of operand \"adr[,x]\"" <em class='brace'>}</em>, <a id='L279' name='L279'></a> 279 <em class='brace'>{</em> 112, "not command of no operand" <em class='brace'>}</em>, <a id='L280' name='L280'></a> 280 <em class='brace'>{</em> 113, "operand too many in COMET II command" <em class='brace'>}</em>, <a id='L281' name='L281'></a> 281 <em class='brace'>{</em> 119, "out of COMET II memory" <em class='brace'>}</em>, <a id='L282' name='L282'></a> 282 <em class='brace'>{</em> 120, "GR0 in operand x" <em class='brace'>}</em>, <a id='L283' name='L283'></a> 283 <em class='brace'>{</em> 122, "cannot create hash table" <em class='brace'>}</em>, <a id='L284' name='L284'></a> 284 <em class='brace'>{</em> 124, "more than one character in literal" <em class='brace'>}</em>, <a id='L285' name='L285'></a> 285 <em class='brace'>{</em> 125, "not GR in operand x" <em class='brace'>}</em>, <a id='L286' name='L286'></a> 286 <em class='brace'>}</em>; <a id='L287' name='L287'></a> 287 <a id='L288' name='L288'></a> 288 <em class='comment'>/**</em> <a id='L289' name='L289'></a> 289 <em class='comment'> * @brief アセンブラ命令</em> <a id='L290' name='L290'></a> 290 <em class='comment'> */</em> <a id='L291' name='L291'></a> 291 <strong class='reserved'>static</strong> <a href='../S/2417.html#L107' title='Defined at 107 in include/struct.h.'>CMD</a> <a href='../Y/12.html' title='Multiple used in 2 places.'>ascmd</a>[] = <em class='brace'>{</em> <a id='L292' name='L292'></a> 292 <em class='brace'>{</em> "START", <a href='../S/2837.html#L431' title='Defined at 431 in src/assemble.c.'>assemble_start</a> <em class='brace'>}</em>, <a id='L293' name='L293'></a> 293 <em class='brace'>{</em> "END", <a href='../S/2837.html#L449' title='Defined at 449 in src/assemble.c.'>assemble_end</a> <em class='brace'>}</em>, <a id='L294' name='L294'></a> 294 <em class='brace'>{</em> "DS", <a href='../S/2837.html#L466' title='Defined at 466 in src/assemble.c.'>assemble_ds</a> <em class='brace'>}</em>, <a id='L295' name='L295'></a> 295 <em class='brace'>{</em> "DC", <a href='../S/2837.html#L480' title='Defined at 480 in src/assemble.c.'>assemble_dc</a> <em class='brace'>}</em>, <a id='L296' name='L296'></a> 296 <em class='brace'>{</em> "", <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a> <em class='brace'>}</em> <a id='L297' name='L297'></a> 297 <em class='brace'>}</em>; <a id='L298' name='L298'></a> 298 <a id='L299' name='L299'></a> 299 <em class='comment'>/**</em> <a id='L300' name='L300'></a> 300 <em class='comment'> * @brief マクロ命令</em> <a id='L301' name='L301'></a> 301 <em class='comment'> */</em> <a id='L302' name='L302'></a> 302 <strong class='reserved'>static</strong> <a href='../S/2417.html#L107' title='Defined at 107 in include/struct.h.'>CMD</a> <a href='../Y/141.html' title='Multiple used in 2 places.'>macrocmd</a>[] = <em class='brace'>{</em> <a id='L303' name='L303'></a> 303 <em class='brace'>{</em> "OUT", <a href='../S/2837.html#L514' title='Defined at 514 in src/assemble.c.'>assemble_out</a> <em class='brace'>}</em>, <a id='L304' name='L304'></a> 304 <em class='brace'>{</em> "IN", <a href='../S/2837.html#L494' title='Defined at 494 in src/assemble.c.'>assemble_in</a> <em class='brace'>}</em>, <a id='L305' name='L305'></a> 305 <em class='brace'>{</em> "RPUSH", <a href='../S/2837.html#L537' title='Defined at 537 in src/assemble.c.'>assemble_rpush</a> <em class='brace'>}</em>, <a id='L306' name='L306'></a> 306 <em class='brace'>{</em> "RPOP", <a href='../S/2837.html#L552' title='Defined at 552 in src/assemble.c.'>assemble_rpop</a> <em class='brace'>}</em>, <a id='L307' name='L307'></a> 307 <em class='brace'>{</em> "", <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a> <em class='brace'>}</em> <a id='L308' name='L308'></a> 308 <em class='brace'>}</em>; <a id='L309' name='L309'></a> 309 <a id='L310' name='L310'></a> 310 <a href='../S/2413.html#L38' title='Defined at 38 in include/assemble.h.'>ASPTR</a> *<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L311' name='L311'></a> 311 <a id='L312' name='L312'></a> 312 <a href='../S/2413.html#L24' title='Defined at 24 in include/assemble.h.'>ASMODE</a> <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a> = <em class='brace'>{</em><a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>, <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>, <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>, <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>, <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a><em class='brace'>}</em>; <a id='L313' name='L313'></a> 313 <a id='L314' name='L314'></a> 314 <strong class='reserved'>void</strong> <a href='../R/202.html' title='Multiple referred from 3 places.'>printline</a>(<a href='../Y/2.html' title='Multiple used in 16 places.'>FILE</a> *<a href='../Y/211.html' title='Multiple used in 15 places.'>stream</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/98.html' title='Multiple used in 3 places.'>filename</a>, <strong class='reserved'>int</strong> <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>, <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>) <a id='L315' name='L315'></a> 315 <em class='brace'>{</em> <a id='L316' name='L316'></a> 316 <a href='../Y/102.html' title='Multiple used in 115 places.'>fprintf</a>(<a href='../Y/211.html' title='Multiple used in 15 places.'>stream</a>, "%s:%5d:%s", <a href='../Y/98.html' title='Multiple used in 3 places.'>filename</a>, <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>, <a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L317' name='L317'></a> 317 <em class='brace'>}</em> <a id='L318' name='L318'></a> 318 <a id='L319' name='L319'></a> 319 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../R/149.html' title='Multiple referred from 4 places.'>getadr</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L320' name='L320'></a> 320 <em class='brace'>{</em> <a id='L321' name='L321'></a> 321 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = 0; <a id='L322' name='L322'></a> 322 <a id='L323' name='L323'></a> 323 <strong class='reserved'>if</strong>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '=') <em class='brace'>{</em> <a id='L324' name='L324'></a> 324 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2837.html#L357' title='Defined at 357 in src/assemble.c.'>getliteral</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L325' name='L325'></a> 325 <em class='brace'>}</em> <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/120.html' title='Multiple used in 4 places.'>isdigit</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0]) || <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '-' || <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '#') <em class='brace'>{</em> <a id='L326' name='L326'></a> 326 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2828.html#L82' title='Defined at 82 in src/word.c.'>nh2word</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <a id='L327' name='L327'></a> 327 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L328' name='L328'></a> 328 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a>) <em class='brace'>{</em> <a id='L329' name='L329'></a> 329 <strong class='reserved'>if</strong>((<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2836.html#L89' title='Defined at 89 in src/label.c.'>getlabel</a>(<a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L330' name='L330'></a> 330 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(103, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <em class='comment'>/* label not found */</em> <a id='L331' name='L331'></a> 331 <em class='brace'>}</em> <a id='L332' name='L332'></a> 332 <em class='brace'>}</em> <a id='L333' name='L333'></a> 333 <em class='brace'>}</em> <a id='L334' name='L334'></a> 334 <strong class='reserved'>return</strong> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>; <a id='L335' name='L335'></a> 335 <em class='brace'>}</em> <a id='L336' name='L336'></a> 336 <a id='L337' name='L337'></a> 337 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../R/159.html' title='Multiple referred from 5 places.'>grword</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/119.html' title='Multiple used in 7 places.'>is_x</a>) <a id='L338' name='L338'></a> 338 <em class='brace'>{</em> <a id='L339' name='L339'></a> 339 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/184.html' title='Multiple used in 52 places.'>r</a> = 0; <a id='L340' name='L340'></a> 340 <a id='L341' name='L341'></a> 341 <em class='comment'>/* "GR[0-7]" 以外の文字列では、0xFFFFを返して終了 */</em> <a id='L342' name='L342'></a> 342 <strong class='reserved'>if</strong>(<a href='../Y/212.html' title='Multiple used in 7 places.'>strlen</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>) != 3 || <a id='L343' name='L343'></a> 343 strncmp(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, "GR", 2) != 0 || <a id='L344' name='L344'></a> 344 <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[2] < '0' || <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[2] > '0' + (<a href='../S/2417.html#L18' title='Defined at 18 in include/struct.h.'>GRSIZE</a> - 1)) <a id='L345' name='L345'></a> 345 <em class='brace'>{</em> <a id='L346' name='L346'></a> 346 <strong class='reserved'>return</strong> 0xFFFF; <a id='L347' name='L347'></a> 347 <em class='brace'>}</em> <a id='L348' name='L348'></a> 348 <a href='../Y/184.html' title='Multiple used in 52 places.'>r</a> = (<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a>)(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[2] - '0'); <a id='L349' name='L349'></a> 349 <em class='comment'>/* GR0は指標レジスタとして用いることができない */</em> <a id='L350' name='L350'></a> 350 <strong class='reserved'>if</strong>(<a href='../Y/119.html' title='Multiple used in 7 places.'>is_x</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> && <a href='../Y/184.html' title='Multiple used in 52 places.'>r</a> == 0x0) <em class='brace'>{</em> <a id='L351' name='L351'></a> 351 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(120, ""); <em class='comment'>/* GR0 in operand x */</em> <a id='L352' name='L352'></a> 352 <strong class='reserved'>return</strong> 0; <a id='L353' name='L353'></a> 353 <em class='brace'>}</em> <a id='L354' name='L354'></a> 354 <strong class='reserved'>return</strong> <a href='../Y/184.html' title='Multiple used in 52 places.'>r</a>; <a id='L355' name='L355'></a> 355 <em class='brace'>}</em> <a id='L356' name='L356'></a> 356 <a id='L357' name='L357'></a> 357 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../R/157.html' title='Multiple referred from 2 places.'>getliteral</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L358' name='L358'></a> 358 <em class='brace'>{</em> <a id='L359' name='L359'></a> 359 <a href='../Y/20.html' title='Multiple used in 22 places.'>assert</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '='); <a id='L360' name='L360'></a> 360 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/139.html' title='Multiple used in 6 places.'>lptr</a>; <a id='L361' name='L361'></a> 361 <a id='L362' name='L362'></a> 362 <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>++; <a id='L363' name='L363'></a> 363 <strong class='reserved'>if</strong>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '\'') <em class='brace'>{</em> <em class='comment'>/* 文字定数 */</em> <a id='L364' name='L364'></a> 364 <a href='../S/2837.html#L387' title='Defined at 387 in src/assemble.c.'>writestr</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L365' name='L365'></a> 365 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L366' name='L366'></a> 366 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../S/2828.html#L82' title='Defined at 82 in src/word.c.'>nh2word</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>), (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/139.html' title='Multiple used in 6 places.'>lptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L367' name='L367'></a> 367 <em class='brace'>}</em> <a id='L368' name='L368'></a> 368 <strong class='reserved'>return</strong> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>; <a id='L369' name='L369'></a> 369 <em class='brace'>}</em> <a id='L370' name='L370'></a> 370 <a id='L371' name='L371'></a> 371 <strong class='reserved'>void</strong> <a href='../R/231.html' title='Multiple referred from 13 places.'>writememory</a>(<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>, <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L372' name='L372'></a> 372 <em class='brace'>{</em> <a id='L373' name='L373'></a> 373 <strong class='reserved'>char</strong> *<a href='../Y/152.html' title='Multiple used in 8 places.'>n</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L374' name='L374'></a> 374 <a id='L375' name='L375'></a> 375 <em class='comment'>/* メモリオーバーの場合、エラー発生 */</em> <a id='L376' name='L376'></a> 376 <strong class='reserved'>if</strong>(<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> >= <a href='../Y/217.html' title='Multiple used in 243 places.'>sys</a>-><a href='../Y/146.html' title='Multiple used in 30 places.'>memsize</a>) <em class='brace'>{</em> <a id='L377' name='L377'></a> 377 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(119, (<a href='../Y/152.html' title='Multiple used in 8 places.'>n</a> = <a href='../S/2828.html#L102' title='Defined at 102 in src/word.c.'>word2n</a>(<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>))); <em class='comment'>/* out of COMET II memory */</em> <a id='L378' name='L378'></a> 378 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/152.html' title='Multiple used in 8 places.'>n</a>) <a id='L379' name='L379'></a> 379 <strong class='reserved'>return</strong>; <a id='L380' name='L380'></a> 380 <em class='brace'>}</em> <a id='L381' name='L381'></a> 381 (<a href='../Y/217.html' title='Multiple used in 243 places.'>sys</a>-><a href='../Y/144.html' title='Multiple used in 60 places.'>memory</a>)[<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>] = <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>; <a id='L382' name='L382'></a> 382 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a> && <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/14.html' title='Multiple used in 6 places.'>asdetail</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L383' name='L383'></a> 383 <a href='../Y/102.html' title='Multiple used in 115 places.'>fprintf</a>(<a href='../Y/200.html' title='Multiple used in 93 places.'>stdout</a>, "\t#%04X\t#%04X\n", <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>); <a id='L384' name='L384'></a> 384 <em class='brace'>}</em> <a id='L385' name='L385'></a> 385 <em class='brace'>}</em> <a id='L386' name='L386'></a> 386 <a id='L387' name='L387'></a> 387 <strong class='reserved'>void</strong> <a href='../R/232.html' title='Multiple referred from 3 places.'>writestr</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/135.html' title='Multiple used in 4 places.'>literal</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L388' name='L388'></a> 388 <em class='brace'>{</em> <a id='L389' name='L389'></a> 389 <a href='../Y/20.html' title='Multiple used in 22 places.'>assert</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '\''); <a id='L390' name='L390'></a> 390 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/140.html' title='Multiple used in 3 places.'>lw</a> = <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L391' name='L391'></a> 391 <a id='L392' name='L392'></a> 392 <em class='comment'>/* 「'」の場合、1文字スキップし、次の文字が「'」でなければ正常終了 */</em> <a id='L393' name='L393'></a> 393 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 1; <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>] != '\'' || <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[++<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>] == '\''; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L394' name='L394'></a> 394 <em class='comment'>/* 「'」が閉じないまま文字列が終了した場合はエラー */</em> <a id='L395' name='L395'></a> 395 <strong class='reserved'>if</strong>(!<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]) <em class='brace'>{</em> <a id='L396' name='L396'></a> 396 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(123, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <em class='comment'>/* unclosed quote */</em> <a id='L397' name='L397'></a> 397 <strong class='reserved'>break</strong>; <a id='L398' name='L398'></a> 398 <em class='brace'>}</em> <a id='L399' name='L399'></a> 399 <strong class='reserved'>if</strong>(<a href='../Y/135.html' title='Multiple used in 4 places.'>literal</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> && <a href='../Y/140.html' title='Multiple used in 3 places.'>lw</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L400' name='L400'></a> 400 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(124, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <em class='comment'>/* more than one character in literal */</em> <a id='L401' name='L401'></a> 401 <strong class='reserved'>break</strong>; <a id='L402' name='L402'></a> 402 <em class='brace'>}</em> <a id='L403' name='L403'></a> 403 <em class='comment'>/*リテラルの場合はリテラル領域に書込 */</em> <a id='L404' name='L404'></a> 404 <strong class='reserved'>if</strong>(<a href='../Y/135.html' title='Multiple used in 4 places.'>literal</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L405' name='L405'></a> 405 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>], (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/139.html' title='Multiple used in 6 places.'>lptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L406' name='L406'></a> 406 <a href='../Y/140.html' title='Multiple used in 3 places.'>lw</a> = <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>; <a id='L407' name='L407'></a> 407 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L408' name='L408'></a> 408 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>], (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L409' name='L409'></a> 409 <em class='brace'>}</em> <a id='L410' name='L410'></a> 410 <em class='brace'>}</em> <a id='L411' name='L411'></a> 411 <em class='brace'>}</em> <a id='L412' name='L412'></a> 412 <a id='L413' name='L413'></a> 413 <strong class='reserved'>void</strong> <a href='../R/230.html' title='Multiple referred from 2 places.'>writedc</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L414' name='L414'></a> 414 <em class='brace'>{</em> <a id='L415' name='L415'></a> 415 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = 0; <a id='L416' name='L416'></a> 416 <a id='L417' name='L417'></a> 417 <strong class='reserved'>if</strong>(*<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a> == '\'') <em class='brace'>{</em> <a id='L418' name='L418'></a> 418 <a href='../S/2837.html#L387' title='Defined at 387 in src/assemble.c.'>writestr</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>, <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L419' name='L419'></a> 419 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L420' name='L420'></a> 420 <strong class='reserved'>if</strong>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '#' || <a href='../Y/120.html' title='Multiple used in 4 places.'>isdigit</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0]) || <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>[0] == '-') <em class='brace'>{</em> <a id='L421' name='L421'></a> 421 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2828.html#L82' title='Defined at 82 in src/word.c.'>nh2word</a>(<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <a id='L422' name='L422'></a> 422 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L423' name='L423'></a> 423 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a> && (<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2836.html#L89' title='Defined at 89 in src/label.c.'>getlabel</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L424' name='L424'></a> 424 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(103, <a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <em class='comment'>/* label not found */</em> <a id='L425' name='L425'></a> 425 <em class='brace'>}</em> <a id='L426' name='L426'></a> 426 <em class='brace'>}</em> <a id='L427' name='L427'></a> 427 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L428' name='L428'></a> 428 <em class='brace'>}</em> <a id='L429' name='L429'></a> 429 <em class='brace'>}</em> <a id='L430' name='L430'></a> 430 <a id='L431' name='L431'></a> 431 <strong class='reserved'>void</strong> <a href='../R/110.html' title='Multiple referred from 2 places.'>assemble_start</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L432' name='L432'></a> 432 <em class='brace'>{</em> <a id='L433' name='L433'></a> 433 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 1) <em class='brace'>{</em> <a id='L434' name='L434'></a> 434 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L435' name='L435'></a> 435 <strong class='reserved'>return</strong>; <a id='L436' name='L436'></a> 436 <em class='brace'>}</em> <a id='L437' name='L437'></a> 437 <strong class='reserved'>if</strong>(!<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/127.html' title='Multiple used in 44 places.'>label</a>[0]) <em class='brace'>{</em> <a id='L438' name='L438'></a> 438 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(107, ""); <em class='comment'>/* no label in START */</em> <a id='L439' name='L439'></a> 439 <strong class='reserved'>return</strong>; <a id='L440' name='L440'></a> 440 <em class='brace'>}</em> <a id='L441' name='L441'></a> 441 <em class='comment'>/* プログラム名の設定 */</em> <a id='L442' name='L442'></a> 442 <a href='../Y/208.html' title='Multiple used in 4 places.'>strcpy</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/127.html' title='Multiple used in 44 places.'>label</a>); <a id='L443' name='L443'></a> 443 <em class='comment'>/* オペランドがある場合、書き込みと実行の開始アドレスを設定 */</em> <a id='L444' name='L444'></a> 444 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0] != <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>) <em class='brace'>{</em> <a id='L445' name='L445'></a> 445 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a> = <a href='../Y/89.html' title='Multiple used in 25 places.'>execptr</a>-><a href='../Y/196.html' title='Multiple used in 19 places.'>start</a> = <a href='../S/2837.html#L319' title='Defined at 319 in src/assemble.c.'>getadr</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L446' name='L446'></a> 446 <em class='brace'>}</em> <a id='L447' name='L447'></a> 447 <em class='brace'>}</em> <a id='L448' name='L448'></a> 448 <a id='L449' name='L449'></a> 449 <strong class='reserved'>void</strong> <a href='../R/105.html' title='Multiple referred from 2 places.'>assemble_end</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L450' name='L450'></a> 450 <em class='brace'>{</em> <a id='L451' name='L451'></a> 451 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 0) <em class='brace'>{</em> <a id='L452' name='L452'></a> 452 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L453' name='L453'></a> 453 <strong class='reserved'>return</strong>; <a id='L454' name='L454'></a> 454 <em class='brace'>}</em> <a id='L455' name='L455'></a> 455 <em class='comment'>/* 1回目のアセンブルの場合は、リテラル領域開始アドレスを設定 */</em> <a id='L456' name='L456'></a> 456 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a>) <em class='brace'>{</em> <a id='L457' name='L457'></a> 457 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/139.html' title='Multiple used in 6 places.'>lptr</a> = <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>; <a id='L458' name='L458'></a> 458 <em class='brace'>}</em> <a id='L459' name='L459'></a> 459 <em class='comment'>/* 2回目のアセンブルの場合は、リテラル領域終了アドレスを実行終了アドレスとして設定 */</em> <a id='L460' name='L460'></a> 460 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a>) <em class='brace'>{</em> <a id='L461' name='L461'></a> 461 <a href='../Y/89.html' title='Multiple used in 25 places.'>execptr</a>-><a href='../Y/85.html' title='Multiple used in 25 places.'>end</a> = <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/139.html' title='Multiple used in 6 places.'>lptr</a>; <a id='L462' name='L462'></a> 462 <em class='brace'>}</em> <a id='L463' name='L463'></a> 463 <a href='../Y/208.html' title='Multiple used in 4 places.'>strcpy</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, ""); <a id='L464' name='L464'></a> 464 <em class='brace'>}</em> <a id='L465' name='L465'></a> 465 <a id='L466' name='L466'></a> 466 <strong class='reserved'>void</strong> <a href='../R/104.html' title='Multiple referred from 2 places.'>assemble_ds</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L467' name='L467'></a> 467 <em class='brace'>{</em> <a id='L468' name='L468'></a> 468 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> != 1) <em class='brace'>{</em> <a id='L469' name='L469'></a> 469 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L470' name='L470'></a> 470 <strong class='reserved'>return</strong>; <a id='L471' name='L471'></a> 471 <em class='brace'>}</em> <a id='L472' name='L472'></a> 472 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> < <a href='../Y/21.html' title='Multiple used in 7 places.'>atoi</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0]); <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L473' name='L473'></a> 473 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(0x0, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L474' name='L474'></a> 474 <strong class='reserved'>if</strong>(<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> > 0) <em class='brace'>{</em> <a id='L475' name='L475'></a> 475 <strong class='reserved'>break</strong>; <a id='L476' name='L476'></a> 476 <em class='brace'>}</em> <a id='L477' name='L477'></a> 477 <em class='brace'>}</em> <a id='L478' name='L478'></a> 478 <em class='brace'>}</em> <a id='L479' name='L479'></a> 479 <a id='L480' name='L480'></a> 480 <strong class='reserved'>void</strong> <a href='../R/103.html' title='Multiple referred from 2 places.'>assemble_dc</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L481' name='L481'></a> 481 <em class='brace'>{</em> <a id='L482' name='L482'></a> 482 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 0 || <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> >= <a href='../S/2422.html#L19' title='Defined at 19 in include/token.h.'>OPDSIZE</a>) <em class='brace'>{</em> <a id='L483' name='L483'></a> 483 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L484' name='L484'></a> 484 <strong class='reserved'>return</strong>; <a id='L485' name='L485'></a> 485 <em class='brace'>}</em> <a id='L486' name='L486'></a> 486 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> < <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a>; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L487' name='L487'></a> 487 <a href='../S/2837.html#L413' title='Defined at 413 in src/assemble.c.'>writedc</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L488' name='L488'></a> 488 <strong class='reserved'>if</strong>(<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> > 0) <em class='brace'>{</em> <a id='L489' name='L489'></a> 489 <strong class='reserved'>break</strong>; <a id='L490' name='L490'></a> 490 <em class='brace'>}</em> <a id='L491' name='L491'></a> 491 <em class='brace'>}</em> <a id='L492' name='L492'></a> 492 <em class='brace'>}</em> <a id='L493' name='L493'></a> 493 <a id='L494' name='L494'></a> 494 <strong class='reserved'>void</strong> <a href='../R/106.html' title='Multiple referred from 2 places.'>assemble_in</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L495' name='L495'></a> 495 <em class='brace'>{</em> <a id='L496' name='L496'></a> 496 <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a> + 1, "assemble_in.line"); <a id='L497' name='L497'></a> 497 <a id='L498' name='L498'></a> 498 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 0 || <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 2) <em class='brace'>{</em> <a id='L499' name='L499'></a> 499 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L500' name='L500'></a> 500 <strong class='reserved'>return</strong>; <a id='L501' name='L501'></a> 501 <em class='brace'>}</em> <a id='L502' name='L502'></a> 502 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" PUSH 0,GR1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L503' name='L503'></a> 503 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" PUSH 0,GR2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L504' name='L504'></a> 504 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " LAD GR1,%s", <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0]); <a id='L505' name='L505'></a> 505 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L506' name='L506'></a> 506 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " LAD GR2,%s", <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[1]); <a id='L507' name='L507'></a> 507 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L508' name='L508'></a> 508 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" SVC 1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L509' name='L509'></a> 509 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" POP GR2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L510' name='L510'></a> 510 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" POP GR1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L511' name='L511'></a> 511 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L512' name='L512'></a> 512 <em class='brace'>}</em> <a id='L513' name='L513'></a> 513 <a id='L514' name='L514'></a> 514 <strong class='reserved'>void</strong> <a href='../R/107.html' title='Multiple referred from 2 places.'>assemble_out</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L515' name='L515'></a> 515 <em class='brace'>{</em> <a id='L516' name='L516'></a> 516 <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a> + 1, "assemble_out.line"); <a id='L517' name='L517'></a> 517 <a id='L518' name='L518'></a> 518 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 0 || <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 2) <em class='brace'>{</em> <a id='L519' name='L519'></a> 519 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L520' name='L520'></a> 520 <strong class='reserved'>return</strong>; <a id='L521' name='L521'></a> 521 <em class='brace'>}</em> <a id='L522' name='L522'></a> 522 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" PUSH 0,GR1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L523' name='L523'></a> 523 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" PUSH 0,GR2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L524' name='L524'></a> 524 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " LAD GR1,%s", <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0]); <a id='L525' name='L525'></a> 525 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L526' name='L526'></a> 526 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " LAD GR2,%s", <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[1]); <a id='L527' name='L527'></a> 527 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L528' name='L528'></a> 528 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" SVC 2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L529' name='L529'></a> 529 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" LAD GR1,=#A", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L530' name='L530'></a> 530 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" LAD GR2,=1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L531' name='L531'></a> 531 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" SVC 2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L532' name='L532'></a> 532 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" POP GR2", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L533' name='L533'></a> 533 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(" POP GR1", <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L534' name='L534'></a> 534 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L535' name='L535'></a> 535 <em class='brace'>}</em> <a id='L536' name='L536'></a> 536 <a id='L537' name='L537'></a> 537 <strong class='reserved'>void</strong> <a href='../R/109.html' title='Multiple referred from 2 places.'>assemble_rpush</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L538' name='L538'></a> 538 <em class='brace'>{</em> <a id='L539' name='L539'></a> 539 <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a> + 1, "assemble_rpush.line"); <a id='L540' name='L540'></a> 540 <a id='L541' name='L541'></a> 541 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 0) <em class='brace'>{</em> <a id='L542' name='L542'></a> 542 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L543' name='L543'></a> 543 <strong class='reserved'>return</strong>; <a id='L544' name='L544'></a> 544 <em class='brace'>}</em> <a id='L545' name='L545'></a> 545 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 1; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> <= <a href='../S/2417.html#L18' title='Defined at 18 in include/struct.h.'>GRSIZE</a>-1; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L546' name='L546'></a> 546 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " PUSH 0,GR%d", <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>); <a id='L547' name='L547'></a> 547 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L548' name='L548'></a> 548 <em class='brace'>}</em> <a id='L549' name='L549'></a> 549 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L550' name='L550'></a> 550 <em class='brace'>}</em> <a id='L551' name='L551'></a> 551 <a id='L552' name='L552'></a> 552 <strong class='reserved'>void</strong> <a href='../R/108.html' title='Multiple referred from 2 places.'>assemble_rpop</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L553' name='L553'></a> 553 <em class='brace'>{</em> <a id='L554' name='L554'></a> 554 <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a> + 1, "assemble_rpop.line"); <a id='L555' name='L555'></a> 555 <a id='L556' name='L556'></a> 556 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> > 0) <em class='brace'>{</em> <a id='L557' name='L557'></a> 557 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(106, ""); <em class='comment'>/* operand count mismatch */</em> <a id='L558' name='L558'></a> 558 <strong class='reserved'>return</strong>; <a id='L559' name='L559'></a> 559 <em class='brace'>}</em> <a id='L560' name='L560'></a> 560 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = <a href='../S/2417.html#L18' title='Defined at 18 in include/struct.h.'>GRSIZE</a>-1; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> >= 1; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>--) <em class='brace'>{</em> <a id='L561' name='L561'></a> 561 <a href='../Y/194.html' title='Multiple used in 9 places.'>sprintf</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, " POP GR%d", <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>); <a id='L562' name='L562'></a> 562 <a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L563' name='L563'></a> 563 <em class='brace'>}</em> <a id='L564' name='L564'></a> 564 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L565' name='L565'></a> 565 <em class='brace'>}</em> <a id='L566' name='L566'></a> 566 <a id='L567' name='L567'></a> 567 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/116.html' title='Multiple referred from 2 places.'>casl2cmd</a>(<a href='../S/2417.html#L107' title='Defined at 107 in include/struct.h.'>CMD</a> *<a href='../Y/65.html' title='Multiple used in 5 places.'>cmdtbl</a>, <strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L568' name='L568'></a> 568 <em class='brace'>{</em> <a id='L569' name='L569'></a> 569 <strong class='reserved'>void</strong> (*<a href='../Y/63.html' title='Multiple used in 6 places.'>cmdptr</a>)() = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L570' name='L570'></a> 570 <a id='L571' name='L571'></a> 571 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/65.html' title='Multiple used in 5 places.'>cmdtbl</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>].<a href='../Y/153.html' title='Multiple used in 9 places.'>name</a>[0]; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L572' name='L572'></a> 572 <strong class='reserved'>if</strong>(<a href='../Y/207.html' title='Multiple used in 5 places.'>strcmp</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../Y/65.html' title='Multiple used in 5 places.'>cmdtbl</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>].<a href='../Y/153.html' title='Multiple used in 9 places.'>name</a>) == 0) <em class='brace'>{</em> <a id='L573' name='L573'></a> 573 <a href='../Y/63.html' title='Multiple used in 6 places.'>cmdptr</a> = <a href='../Y/65.html' title='Multiple used in 5 places.'>cmdtbl</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>].<a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>; <a id='L574' name='L574'></a> 574 (*<a href='../Y/63.html' title='Multiple used in 6 places.'>cmdptr</a>)(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L575' name='L575'></a> 575 <strong class='reserved'>return</strong> <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>; <a id='L576' name='L576'></a> 576 <em class='brace'>}</em> <a id='L577' name='L577'></a> 577 <em class='brace'>}</em> <a id='L578' name='L578'></a> 578 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L579' name='L579'></a> 579 <em class='brace'>}</em> <a id='L580' name='L580'></a> 580 <a id='L581' name='L581'></a> 581 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/102.html' title='Multiple referred from 2 places.'>assemble_comet2cmd</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L582' name='L582'></a> 582 <em class='brace'>{</em> <a id='L583' name='L583'></a> 583 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = 0; <a id='L584' name='L584'></a> 584 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/185.html' title='Multiple used in 5 places.'>r_r1</a> = 0; <a id='L585' name='L585'></a> 585 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a> = 0; <a id='L586' name='L586'></a> 586 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = 0; <a id='L587' name='L587'></a> 587 <a id='L588' name='L588'></a> 588 <em class='comment'>/* オペランドなし */</em> <a id='L589' name='L589'></a> 589 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 0) <em class='brace'>{</em> <a id='L590' name='L590'></a> 590 <strong class='reserved'>if</strong>((<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = <a href='../S/2856.html#L153' title='Defined at 153 in src/struct.c.'>getcmdcode</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../S/2417.html#L98' title='Defined at 98 in include/struct.h.'>NONE</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L591' name='L591'></a> 591 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(112, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not command of no operand */</em> <a id='L592' name='L592'></a> 592 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L593' name='L593'></a> 593 <em class='brace'>}</em> <a id='L594' name='L594'></a> 594 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L595' name='L595'></a> 595 <em class='brace'>}</em> <a id='L596' name='L596'></a> 596 <em class='comment'>/* 第1オペランドは汎用レジスタ */</em> <a id='L597' name='L597'></a> 597 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>((<a href='../Y/185.html' title='Multiple used in 5 places.'>r_r1</a> = <a href='../S/2837.html#L337' title='Defined at 337 in src/assemble.c.'>grword</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0], <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>)) != 0xFFFF) <em class='brace'>{</em> <a id='L598' name='L598'></a> 598 <em class='comment'>/* オペランド数1 */</em> <a id='L599' name='L599'></a> 599 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 1) <em class='brace'>{</em> <a id='L600' name='L600'></a> 600 <strong class='reserved'>if</strong>((<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = <a href='../S/2856.html#L153' title='Defined at 153 in src/struct.c.'>getcmdcode</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../S/2417.html#L94' title='Defined at 94 in include/struct.h.'>R_</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L601' name='L601'></a> 601 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(108, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not command of operand "r" */</em> <a id='L602' name='L602'></a> 602 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L603' name='L603'></a> 603 <em class='brace'>}</em> <a id='L604' name='L604'></a> 604 <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> |= (<a href='../Y/185.html' title='Multiple used in 5 places.'>r_r1</a> << 4); <a id='L605' name='L605'></a> 605 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L606' name='L606'></a> 606 <em class='brace'>}</em> <a id='L607' name='L607'></a> 607 <em class='comment'>/* オペランド数2。第2オペランドは汎用レジスタ */</em> <a id='L608' name='L608'></a> 608 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 2 && (<a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a> = <a href='../S/2837.html#L337' title='Defined at 337 in src/assemble.c.'>grword</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[1], <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>)) != 0xFFFF) <em class='brace'>{</em> <a id='L609' name='L609'></a> 609 <strong class='reserved'>if</strong>((<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = <a href='../S/2856.html#L153' title='Defined at 153 in src/struct.c.'>getcmdcode</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../S/2417.html#L83' title='Defined at 83 in include/struct.h.'>R1_R2</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L610' name='L610'></a> 610 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(109, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not command of operand "r1,r2" */</em> <a id='L611' name='L611'></a> 611 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L612' name='L612'></a> 612 <em class='brace'>}</em> <a id='L613' name='L613'></a> 613 <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> |= ((<a href='../Y/185.html' title='Multiple used in 5 places.'>r_r1</a> << 4) | <a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a>); <em class='comment'>/* 第1オペランド、第2オペランドともに汎用レジスタ */</em> <a id='L614' name='L614'></a> 614 <em class='comment'>/* メモリへの書き込み */</em> <a id='L615' name='L615'></a> 615 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L616' name='L616'></a> 616 <em class='brace'>}</em> <a id='L617' name='L617'></a> 617 <em class='comment'>/* オペランド数2または3 */</em> <a id='L618' name='L618'></a> 618 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 2 || <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 3) <em class='brace'>{</em> <a id='L619' name='L619'></a> 619 <strong class='reserved'>if</strong>((<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = <a href='../S/2856.html#L153' title='Defined at 153 in src/struct.c.'>getcmdcode</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../S/2417.html#L77' title='Defined at 77 in include/struct.h.'>R_ADR_X</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L620' name='L620'></a> 620 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(110, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not command of operand "r,adr[,x]" */</em> <a id='L621' name='L621'></a> 621 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L622' name='L622'></a> 622 <em class='brace'>}</em> <a id='L623' name='L623'></a> 623 <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> |= (<a href='../Y/185.html' title='Multiple used in 5 places.'>r_r1</a> << 4); <em class='comment'>/* 第1オペランドは汎用レジスタ */</em> <a id='L624' name='L624'></a> 624 <em class='comment'>/* オペランド数3の場合 */</em> <a id='L625' name='L625'></a> 625 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 3) <em class='brace'>{</em> <em class='comment'>/* 第3オペランドは指標レジスタとして用いる汎用レジスタ */</em> <a id='L626' name='L626'></a> 626 <strong class='reserved'>if</strong>((<a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a> = <a href='../S/2837.html#L337' title='Defined at 337 in src/assemble.c.'>grword</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[2], <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L627' name='L627'></a> 627 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(125, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not GR in operand x */</em> <a id='L628' name='L628'></a> 628 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L629' name='L629'></a> 629 <em class='brace'>}</em> <a id='L630' name='L630'></a> 630 <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> |= <a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a>; <a id='L631' name='L631'></a> 631 <em class='brace'>}</em> <a id='L632' name='L632'></a> 632 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2837.html#L319' title='Defined at 319 in src/assemble.c.'>getadr</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[1], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <em class='comment'>/* 第2オペランドはアドレス */</em> <a id='L633' name='L633'></a> 633 <em class='comment'>/* メモリへの書き込み */</em> <a id='L634' name='L634'></a> 634 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L635' name='L635'></a> 635 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L636' name='L636'></a> 636 <em class='brace'>}</em> <strong class='reserved'>else</strong> <em class='brace'>{</em> <a id='L637' name='L637'></a> 637 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(113, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* operand too many in COMET II command */</em> <a id='L638' name='L638'></a> 638 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L639' name='L639'></a> 639 <em class='brace'>}</em> <a id='L640' name='L640'></a> 640 <em class='brace'>}</em> <a id='L641' name='L641'></a> 641 <em class='comment'>/* オペランド数1または2。第1オペランドはアドレス */</em> <a id='L642' name='L642'></a> 642 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 1 || <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 2) <em class='brace'>{</em> <a id='L643' name='L643'></a> 643 <strong class='reserved'>if</strong>((<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> = <a href='../S/2856.html#L153' title='Defined at 153 in src/struct.c.'>getcmdcode</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, <a href='../S/2417.html#L89' title='Defined at 89 in include/struct.h.'>ADR_X</a>)) == 0xFFFF) <em class='brace'>{</em> <a id='L644' name='L644'></a> 644 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(111, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* not command of operand "adr[,x]" */</em> <a id='L645' name='L645'></a> 645 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L646' name='L646'></a> 646 <em class='brace'>}</em> <a id='L647' name='L647'></a> 647 <em class='comment'>/* オペランド数2の場合 */</em> <a id='L648' name='L648'></a> 648 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a> == 2) <em class='brace'>{</em> <em class='comment'>/* 第2オペランドは指標レジスタとして用いる汎用レジスタ */</em> <a id='L649' name='L649'></a> 649 <a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a> = <a href='../S/2837.html#L337' title='Defined at 337 in src/assemble.c.'>grword</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[1], <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>); <a id='L650' name='L650'></a> 650 <strong class='reserved'>if</strong>(<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> > 0) <em class='brace'>{</em> <a id='L651' name='L651'></a> 651 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L652' name='L652'></a> 652 <em class='brace'>}</em> <a id='L653' name='L653'></a> 653 <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> |= <a href='../Y/241.html' title='Multiple used in 7 places.'>x_r2</a>; <a id='L654' name='L654'></a> 654 <em class='brace'>}</em> <a id='L655' name='L655'></a> 655 <em class='comment'>/* CALLの場合はプログラムの入口名を表すラベルを取得 */</em> <a id='L656' name='L656'></a> 656 <em class='comment'>/* CALL以外の命令の場合と、プログラムの入口名を取得できない場合は、 */</em> <a id='L657' name='L657'></a> 657 <em class='comment'>/* 同一プログラム内のラベルを取得 */</em> <a id='L658' name='L658'></a> 658 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a> && <a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> == 0x8000) <em class='brace'>{</em> <em class='comment'>/* CALL命令 */</em> <a id='L659' name='L659'></a> 659 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2836.html#L89' title='Defined at 89 in src/label.c.'>getlabel</a>("", <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0]); <a id='L660' name='L660'></a> 660 <em class='brace'>}</em> <a id='L661' name='L661'></a> 661 <strong class='reserved'>if</strong>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a> != 0x8000 || (<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a> && <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> == 0xFFFF)) <em class='brace'>{</em> <a id='L662' name='L662'></a> 662 <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a> = <a href='../S/2837.html#L319' title='Defined at 319 in src/assemble.c.'>getadr</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[0], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L663' name='L663'></a> 663 <em class='brace'>}</em> <a id='L664' name='L664'></a> 664 <em class='comment'>/* メモリへの書込 */</em> <a id='L665' name='L665'></a> 665 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L666' name='L666'></a> 666 <a href='../S/2837.html#L371' title='Defined at 371 in src/assemble.c.'>writememory</a>(<a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>, (<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>)++, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L667' name='L667'></a> 667 <em class='brace'>}</em> <a id='L668' name='L668'></a> 668 <strong class='reserved'>return</strong> (<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> == 0) ? <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> : <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L669' name='L669'></a> 669 <em class='brace'>}</em> <a id='L670' name='L670'></a> 670 <a id='L671' name='L671'></a> 671 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/113.html' title='Multiple referred from 2 places.'>assembletok</a>(<strong class='reserved'>const</strong> <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L672' name='L672'></a> 672 <em class='brace'>{</em> <a id='L673' name='L673'></a> 673 <em class='comment'>/* 命令がない場合 */</em> <a id='L674' name='L674'></a> 674 <strong class='reserved'>if</strong>(!<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>[0]) <em class='brace'>{</em> <a id='L675' name='L675'></a> 675 <strong class='reserved'>return</strong> <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>; <a id='L676' name='L676'></a> 676 <em class='brace'>}</em> <a id='L677' name='L677'></a> 677 <em class='comment'>/* アセンブラ命令またはマクロ命令の書込 */</em> <a id='L678' name='L678'></a> 678 <strong class='reserved'>if</strong>(<a href='../S/2837.html#L567' title='Defined at 567 in src/assemble.c.'>casl2cmd</a>(<a href='../Y/12.html' title='Multiple used in 2 places.'>ascmd</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) == <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a> && <a href='../S/2837.html#L567' title='Defined at 567 in src/assemble.c.'>casl2cmd</a>(<a href='../Y/141.html' title='Multiple used in 2 places.'>macrocmd</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) == <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>) <em class='brace'>{</em> <a id='L679' name='L679'></a> 679 <em class='comment'>/* 機械語命令の書込 */</em> <a id='L680' name='L680'></a> 680 <strong class='reserved'>if</strong>(<a href='../S/2837.html#L581' title='Defined at 581 in src/assemble.c.'>assemble_comet2cmd</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) == <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>) <em class='brace'>{</em> <a id='L681' name='L681'></a> 681 <strong class='reserved'>if</strong>(<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> == 0) <em class='brace'>{</em> <a id='L682' name='L682'></a> 682 <a href='../S/2845.html#L45' title='Defined at 45 in src/cerr.c.'>setcerr</a>(113, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <em class='comment'>/* operand too many in COMET II command */</em> <a id='L683' name='L683'></a> 683 <em class='brace'>}</em> <a id='L684' name='L684'></a> 684 <em class='brace'>}</em> <a id='L685' name='L685'></a> 685 <em class='brace'>}</em> <a id='L686' name='L686'></a> 686 <strong class='reserved'>return</strong> (<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> == 0) ? <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> : <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L687' name='L687'></a> 687 <em class='brace'>}</em> <a id='L688' name='L688'></a> 688 <a id='L689' name='L689'></a> 689 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/112.html' title='Multiple referred from 21 places.'>assembleline</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L690' name='L690'></a> 690 <em class='brace'>{</em> <a id='L691' name='L691'></a> 691 <a href='../S/2422.html#L45' title='Defined at 45 in include/token.h.'>CMDLINE</a> *<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L692' name='L692'></a> 692 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>; <a id='L693' name='L693'></a> 693 <a id='L694' name='L694'></a> 694 <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a> = <a href='../S/2820.html#L97' title='Defined at 97 in src/token.c.'>linetok</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L695' name='L695'></a> 695 <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = (<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> == 0) ? <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> : <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L696' name='L696'></a> 696 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a> != <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>) <em class='brace'>{</em> <a id='L697' name='L697'></a> 697 <strong class='reserved'>if</strong>(<a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L698' name='L698'></a> 698 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a> && <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/127.html' title='Multiple used in 44 places.'>label</a>[0]) <em class='brace'>{</em> <a id='L699' name='L699'></a> 699 <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = <a href='../S/2836.html#L106' title='Defined at 106 in src/label.c.'>addlabel</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>, <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/127.html' title='Multiple used in 44 places.'>label</a>, <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>); <a id='L700' name='L700'></a> 700 <em class='brace'>}</em> <a id='L701' name='L701'></a> 701 <em class='brace'>}</em> <a id='L702' name='L702'></a> 702 <strong class='reserved'>if</strong>(<a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L703' name='L703'></a> 703 <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = <a href='../S/2837.html#L671' title='Defined at 671 in src/assemble.c.'>assembletok</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L704' name='L704'></a> 704 <em class='brace'>}</em> <a id='L705' name='L705'></a> 705 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/127.html' title='Multiple used in 44 places.'>label</a>); <a id='L706' name='L706'></a> 706 <strong class='reserved'>if</strong>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a> != <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>) <em class='brace'>{</em> <a id='L707' name='L707'></a> 707 <strong class='reserved'>for</strong>(<strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> < <a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/163.html' title='Multiple used in 25 places.'>opdc</a>; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L708' name='L708'></a> 708 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>-><a href='../Y/164.html' title='Multiple used in 20 places.'>opdv</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]); <a id='L709' name='L709'></a> 709 <em class='brace'>}</em> <a id='L710' name='L710'></a> 710 <em class='brace'>}</em> <a id='L711' name='L711'></a> 711 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/162.html' title='Multiple used in 50 places.'>opd</a>); <a id='L712' name='L712'></a> 712 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>-><a href='../Y/59.html' title='Multiple used in 86 places.'>cmd</a>); <a id='L713' name='L713'></a> 713 <em class='brace'>}</em> <a id='L714' name='L714'></a> 714 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/61.html' title='Multiple used in 97 places.'>cmdl</a>); <a id='L715' name='L715'></a> 715 <strong class='reserved'>return</strong> <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a>; <a id='L716' name='L716'></a> 716 <em class='brace'>}</em> <a id='L717' name='L717'></a> 717 <a id='L718' name='L718'></a> 718 <em class='comment'>/**</em> <a id='L719' name='L719'></a> 719 <em class='comment'> * @brief 指定された名前のファイルをアセンブル</em> <a id='L720' name='L720'></a> 720 <em class='comment'> *</em> <a id='L721' name='L721'></a> 721 <em class='comment'> * アセンブル完了時はtrue、エラー発生時はfalseを返す</em> <a id='L722' name='L722'></a> 722 <em class='comment'> */</em> <a id='L723' name='L723'></a> 723 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/111.html' title='Multiple referred from 2 places.'>assemblefile</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>, <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) <a id='L724' name='L724'></a> 724 <em class='brace'>{</em> <a id='L725' name='L725'></a> 725 <strong class='reserved'>int</strong> <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a> = 1; <a id='L726' name='L726'></a> 726 <strong class='reserved'>char</strong> *<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L727' name='L727'></a> 727 <a href='../Y/2.html' title='Multiple used in 16 places.'>FILE</a> *<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L728' name='L728'></a> 728 <a id='L729' name='L729'></a> 729 <strong class='reserved'>if</strong>((<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a> = <a href='../Y/100.html' title='Multiple used in 8 places.'>fopen</a>(<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>, "r")) == <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>) <em class='brace'>{</em> <a id='L730' name='L730'></a> 730 <a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> = errno; <a id='L731' name='L731'></a> 731 <a href='../Y/173.html' title='Multiple used in 8 places.'>perror</a>(<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>); <a id='L732' name='L732'></a> 732 <strong class='reserved'>return</strong> <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L733' name='L733'></a> 733 <em class='brace'>}</em> <a id='L734' name='L734'></a> 734 <strong class='reserved'>for</strong>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a> + 1, "assemble.line"); <a href='../Y/95.html' title='Multiple used in 3 places.'>fgets</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../S/2422.html#L26' title='Defined at 26 in include/token.h.'>LINESIZE</a>, <a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a>); <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>++) <em class='brace'>{</em> <a id='L735' name='L735'></a> 735 <strong class='reserved'>if</strong>((<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a> && <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/195.html' title='Multiple used in 11 places.'>src</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) || (<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a> && <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/14.html' title='Multiple used in 6 places.'>asdetail</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>)) <em class='brace'>{</em> <a id='L736' name='L736'></a> 736 <a href='../S/2837.html#L314' title='Defined at 314 in src/assemble.c.'>printline</a>(<a href='../Y/200.html' title='Multiple used in 93 places.'>stdout</a>, <a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>, <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>, <a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L737' name='L737'></a> 737 <em class='brace'>}</em> <a id='L738' name='L738'></a> 738 <strong class='reserved'>if</strong>(<a href='../S/2837.html#L689' title='Defined at 689 in src/assemble.c.'>assembleline</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>, <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>) == <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>) <em class='brace'>{</em> <a id='L739' name='L739'></a> 739 <strong class='reserved'>break</strong>; <a id='L740' name='L740'></a> 740 <em class='brace'>}</em> <a id='L741' name='L741'></a> 741 <em class='brace'>}</em> <a id='L742' name='L742'></a> 742 <strong class='reserved'>if</strong>(<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> > 0) <em class='brace'>{</em> <a id='L743' name='L743'></a> 743 <a href='../Y/102.html' title='Multiple used in 115 places.'>fprintf</a>(<a href='../Y/198.html' title='Multiple used in 23 places.'>stderr</a>, "Assemble error - %d: %s\n", <a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a>, <a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/151.html' title='Multiple used in 23 places.'>msg</a>); <a id='L744' name='L744'></a> 744 <a href='../S/2837.html#L314' title='Defined at 314 in src/assemble.c.'>printline</a>(<a href='../Y/198.html' title='Multiple used in 23 places.'>stderr</a>, <a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>, <a href='../Y/133.html' title='Multiple used in 7 places.'>lineno</a>, <a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L745' name='L745'></a> 745 <em class='brace'>}</em> <a id='L746' name='L746'></a> 746 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/132.html' title='Multiple used in 41 places.'>line</a>); <a id='L747' name='L747'></a> 747 <a href='../Y/93.html' title='Multiple used in 8 places.'>fclose</a>(<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a>); <a id='L748' name='L748'></a> 748 <strong class='reserved'>return</strong> (<a href='../Y/32.html' title='Multiple used in 59 places.'>cerr</a>-><a href='../Y/157.html' title='Multiple used in 57 places.'>num</a> == 0) ? <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> : <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L749' name='L749'></a> 749 <em class='brace'>}</em> <a id='L750' name='L750'></a> 750 <a id='L751' name='L751'></a> 751 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../R/101.html' title='Multiple referred from 4 places.'>assemble</a>(<strong class='reserved'>int</strong> <a href='../Y/97.html' title='Multiple used in 4 places.'>filec</a>, <strong class='reserved'>char</strong> *<a href='../Y/99.html' title='Multiple used in 4 places.'>filev</a>[], <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>) <a id='L752' name='L752'></a> 752 <em class='brace'>{</em> <a id='L753' name='L753'></a> 753 <strong class='reserved'>int</strong> <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>; <a id='L754' name='L754'></a> 754 <a href='../S/2413.html#L75' title='Defined at 75 in include/assemble.h.'>PASS</a> <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>; <a id='L755' name='L755'></a> 755 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/26.html' title='Multiple used in 3 places.'>bp</a>[<a href='../Y/97.html' title='Multiple used in 4 places.'>filec</a>]; <a id='L756' name='L756'></a> 756 <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>; <a id='L757' name='L757'></a> 757 <a id='L758' name='L758'></a> 758 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<strong class='reserved'>sizeof</strong>(<a href='../S/2413.html#L38' title='Defined at 38 in include/assemble.h.'>ASPTR</a>), "asptr"); <em class='comment'>/* アセンブル時のプロパティ用の領域確保 */</em> <a id='L759' name='L759'></a> 759 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a> = <a href='../S/2831.html#L3' title='Defined at 3 in src/cmem.c.'>malloc_chk</a>(<a href='../S/2422.html#L18' title='Defined at 18 in include/token.h.'>LABELSIZE</a> + 1, "asptr.prog"); <a id='L760' name='L760'></a> 760 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a> = <a href='../Y/7.html' title='Multiple used in 68 places.'>adr</a>; <a id='L761' name='L761'></a> 761 <em class='comment'>/* アセンブル。ラベル表作成のため、2回行う */</em> <a id='L762' name='L762'></a> 762 <strong class='reserved'>for</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> = <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a>; <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> <= <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a>; <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>++) <em class='brace'>{</em> <a id='L763' name='L763'></a> 763 <strong class='reserved'>for</strong>(<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> = 0; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a> < <a href='../Y/97.html' title='Multiple used in 4 places.'>filec</a>; <a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>++) <em class='brace'>{</em> <a id='L764' name='L764'></a> 764 <em class='comment'>/* データの格納開始位置 */</em> <a id='L765' name='L765'></a> 765 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a>) <em class='brace'>{</em> <a id='L766' name='L766'></a> 766 <a href='../Y/26.html' title='Multiple used in 3 places.'>bp</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>] = <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a>; <a id='L767' name='L767'></a> 767 <em class='brace'>}</em> <strong class='reserved'>else</strong> <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L74' title='Defined at 74 in include/assemble.h.'>SECOND</a>) <em class='brace'>{</em> <a id='L768' name='L768'></a> 768 <a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/178.html' title='Multiple used in 24 places.'>ptr</a> = <a href='../Y/26.html' title='Multiple used in 3 places.'>bp</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>]; <a id='L769' name='L769'></a> 769 <em class='brace'>}</em> <a id='L770' name='L770'></a> 770 <strong class='reserved'>if</strong>(<a href='../Y/88.html' title='Multiple used in 35 places.'>execmode</a>.<a href='../Y/227.html' title='Multiple used in 13 places.'>trace</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> || <a href='../Y/88.html' title='Multiple used in 35 places.'>execmode</a>.<a href='../Y/81.html' title='Multiple used in 8 places.'>dump</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> || <a id='L771' name='L771'></a> 771 <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/195.html' title='Multiple used in 11 places.'>src</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> || <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/127.html' title='Multiple used in 44 places.'>label</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a> || <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/14.html' title='Multiple used in 6 places.'>asdetail</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <a id='L772' name='L772'></a> 772 <em class='brace'>{</em> <a id='L773' name='L773'></a> 773 <a href='../Y/102.html' title='Multiple used in 115 places.'>fprintf</a>(<a href='../Y/200.html' title='Multiple used in 93 places.'>stdout</a>, "\nAssemble %s (%d)\n", <a href='../Y/99.html' title='Multiple used in 4 places.'>filev</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L774' name='L774'></a> 774 <em class='brace'>}</em> <a id='L775' name='L775'></a> 775 <em class='comment'>/* ファイルをアセンブル */</em> <a id='L776' name='L776'></a> 776 <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> = <a href='../S/2837.html#L723' title='Defined at 723 in src/assemble.c.'>assemblefile</a>(<a href='../Y/99.html' title='Multiple used in 4 places.'>filev</a>[<a href='../Y/117.html' title='Multiple used in 233 places.'>i</a>], <a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a>); <a id='L777' name='L777'></a> 777 <strong class='reserved'>if</strong>(<a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a> == <a href='../Y/92.html' title='Multiple used in 52 places.'>false</a>) <em class='brace'>{</em> <a id='L778' name='L778'></a> 778 <strong class='reserved'>goto</strong> <a href='../Y/17.html' title='Multiple used in 2 places.'>asfin</a>; <a id='L779' name='L779'></a> 779 <em class='brace'>}</em> <a id='L780' name='L780'></a> 780 <em class='brace'>}</em> <a id='L781' name='L781'></a> 781 <strong class='reserved'>if</strong>(<a href='../Y/172.html' title='Multiple used in 95 places.'>pass</a> == <a href='../S/2413.html#L73' title='Defined at 73 in include/assemble.h.'>FIRST</a> && <a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/127.html' title='Multiple used in 44 places.'>label</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L782' name='L782'></a> 782 <a href='../Y/102.html' title='Multiple used in 115 places.'>fprintf</a>(<a href='../Y/200.html' title='Multiple used in 93 places.'>stdout</a>, "\nLabel::::\n"); <a id='L783' name='L783'></a> 783 <a href='../S/2836.html#L135' title='Defined at 135 in src/label.c.'>printlabel</a>(); <a id='L784' name='L784'></a> 784 <strong class='reserved'>if</strong>(<a href='../Y/18.html' title='Multiple used in 17 places.'>asmode</a>.<a href='../Y/161.html' title='Multiple used in 4 places.'>onlylabel</a> == <a href='../Y/228.html' title='Multiple used in 79 places.'>true</a>) <em class='brace'>{</em> <a id='L785' name='L785'></a> 785 <strong class='reserved'>break</strong>; <a id='L786' name='L786'></a> 786 <em class='brace'>}</em> <a id='L787' name='L787'></a> 787 <em class='brace'>}</em> <a id='L788' name='L788'></a> 788 <em class='brace'>}</em> <a id='L789' name='L789'></a> 789 <a href='../Y/17.html' title='Multiple used in 2 places.'>asfin</a>: <a id='L790' name='L790'></a> 790 <a href='../S/2836.html#L158' title='Defined at 158 in src/label.c.'>freelabel</a>(); <em class='comment'>/* ラベルハッシュ表を解放 */</em> <a id='L791' name='L791'></a> 791 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>-><a href='../Y/177.html' title='Multiple used in 31 places.'>prog</a>); <em class='comment'>/* アセンブル時のプロパティを解放 */</em> <a id='L792' name='L792'></a> 792 <a href='../S/2424.html#L21' title='Defined at 21 in include/cmem.h.'>FREE</a>(<a href='../Y/19.html' title='Multiple used in 31 places.'>asptr</a>); <a id='L793' name='L793'></a> 793 <strong class='reserved'>return</strong> <a href='../Y/197.html' title='Multiple used in 34 places.'>stat</a>; <a id='L794' name='L794'></a> 794 <em class='brace'>}</em> <a id='L795' name='L795'></a> 795 <a id='L796' name='L796'></a> 796 <em class='comment'>/* assemble.hで定義された関数群 */</em> <a id='L797' name='L797'></a> 797 <strong class='reserved'>void</strong> <a href='../R/86.html' title='Multiple referred from 3 places.'>addcerrlist_assemble</a>() <a id='L798' name='L798'></a> 798 <em class='brace'>{</em> <a id='L799' name='L799'></a> 799 <a href='../S/2820.html#L91' title='Defined at 91 in src/token.c.'>addcerrlist_tok</a>(); <a id='L800' name='L800'></a> 800 <a href='../S/2828.html#L77' title='Defined at 77 in src/word.c.'>addcerrlist_word</a>(); <a id='L801' name='L801'></a> 801 <a href='../S/2836.html#L84' title='Defined at 84 in src/label.c.'>addcerrlist_label</a>(); <a id='L802' name='L802'></a> 802 <a href='../S/2845.html#L13' title='Defined at 13 in src/cerr.c.'>addcerrlist</a>(<a href='../S/2424.html#L14' title='Defined at 14 in include/cmem.h.'>ARRAYSIZE</a>(<a href='../Y/39.html' title='Multiple used in 2 places.'>cerr_assemble</a>), <a href='../Y/39.html' title='Multiple used in 2 places.'>cerr_assemble</a>); <a id='L803' name='L803'></a> 803 <em class='brace'>}</em> <a id='L804' name='L804'></a> 804 <a id='L805' name='L805'></a> 805 <strong class='reserved'>void</strong> <a href='../R/196.html' title='Multiple referred from 2 places.'>outassemble</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>) <a id='L806' name='L806'></a> 806 <em class='brace'>{</em> <a id='L807' name='L807'></a> 807 <a href='../Y/2.html' title='Multiple used in 16 places.'>FILE</a> *<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a> = <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>; <a id='L808' name='L808'></a> 808 <a id='L809' name='L809'></a> 809 <strong class='reserved'>if</strong>((<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a> = <a href='../Y/100.html' title='Multiple used in 8 places.'>fopen</a>(<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>, "w")) == <a href='../Y/3.html' title='Multiple used in 191 places.'>NULL</a>) <em class='brace'>{</em> <a id='L810' name='L810'></a> 810 <a href='../Y/173.html' title='Multiple used in 8 places.'>perror</a>(<a href='../Y/96.html' title='Multiple used in 21 places.'>file</a>); <a id='L811' name='L811'></a> 811 <a href='../Y/90.html' title='Multiple used in 8 places.'>exit</a>(1); <a id='L812' name='L812'></a> 812 <em class='brace'>}</em> <a id='L813' name='L813'></a> 813 <a href='../Y/107.html' title='Multiple used in 5 places.'>fwrite</a>(<a href='../Y/217.html' title='Multiple used in 243 places.'>sys</a>-><a href='../Y/144.html' title='Multiple used in 60 places.'>memory</a>, <strong class='reserved'>sizeof</strong>(<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a>), <a href='../Y/89.html' title='Multiple used in 25 places.'>execptr</a>-><a href='../Y/85.html' title='Multiple used in 25 places.'>end</a>, <a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a>); <a id='L814' name='L814'></a> 814 <a href='../Y/93.html' title='Multiple used in 8 places.'>fclose</a>(<a href='../Y/101.html' title='Multiple used in 34 places.'>fp</a>); <a id='L815' name='L815'></a> 815 <em class='brace'>}</em> </pre> <hr /> <a id='BOTTOM' name='BOTTOM'></a> <em class='comment'>/* [<][>]<a href='#L314'>[^]</a><a href='#L805'>[v]</a><a href='#TOP'>[top]</a>[bottom]<a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em> </body> </html>