-

差分

移動先: 案内検索

Z80 Assembler Reference Manual

142 バイト追加, 2017年8月14日 (月) 23:43
COND, IF, ELSE, ENDC
==== COND, IF, ELSE, ENDC ====
:Conditional assembly is introduced by the COND pseudo-op. The operand to COND must be an absolute expression. If its value is false 条件的アセンブルはCOND擬似命令によって、提供されます。 :CONDのオペランドは絶対的なエクスプレッションでなければいけません。:もし、この値が偽(zeroゼロ) the code following the COND up to the corresponding ENDC pseudo-op will not be assembled. の場合、CONDから続き、対応するENDC擬似命令の部分まではアセンブルされません。 :COND/ENDC pairs may be nested. IF may be used as a synonym for COND. The ELSE pseudo operation may be included within a CONDENDCのペアはネストが可能です。 :IFがCONDのシノニムとして使用可能です。 :ELSE擬似命令をCOND/ENDC block, for exampleENDCブロックの中に含むことができます。<nowiki>例:</nowiki>
IF CPM
call os_func
ENDC
 
 
==== ELSE ====

案内メニュー